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 @@ -27,7 +27,7 @@ jobs:
- name: Set up Julia
uses: julia-actions/setup-julia@v2
with:
version: '1'
version: '1.12.4' # parser broken on 1.12.5
- name: Check out repository
uses: actions/checkout@v6
- name: Cache artifacts
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
workflow_dispatch:
jobs:
format:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Julia
uses: julia-actions/setup-julia@v2
- name: Cache artifacts
uses: julia-actions/cache@v2
- name: Install JuliaFormatter and format
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
1 change: 0 additions & 1 deletion .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
- '1'
os:
- ubuntu-latest
- windows-latest
arch:
- x64
include:
Expand Down
Loading