Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Check if Julia is already available
id: julia_in_path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Create new release tag
uses: JuliaRegistries/TagBot@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-preview-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
doc-preview-cleanup:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: "!contains(github.event.head_commit.message, 'skip ci')"
env:
JULIA_PKG_SERVER: ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Check out repository
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/invalidations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true
jobs:
evaluate:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: "!contains(github.event.head_commit.message, 'skip ci')"
env:
JULIA_PKG_SERVER: ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:
cancel-in-progress: true
jobs:
spell-check:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Check out repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
version:
- '1'
os:
- ubuntu-latest
- ubuntu-slim
arch:
- x64
env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,12 @@ jobs:
- '1'
os:
- ubuntu-latest
- windows-latest
arch:
- x64
include:
- version: '1.6' # test on oldest supported version
arch: x64
os: ubuntu-latest
os: ubuntu-slim
env:
JULIA_PKG_SERVER: ''
steps:
Expand Down
Loading