Skip to content

Commit 4b4c17a

Browse files
committed
use ubuntu-slim in CI
1 parent 5b0d169 commit 4b4c17a

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
CompatHelper:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: Check if Julia is already available
1212
id: julia_in_path

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
TagBot:
1010
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-slim
1212
steps:
1313
- name: Create new release tag
1414
uses: JuliaRegistries/TagBot@v1

.github/workflows/doc-preview-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
doc-preview-cleanup:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: Checkout gh-pages branch
1212
uses: actions/checkout@v6

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
format:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: Check out repository
1212
uses: actions/checkout@v6

.github/workflows/invalidations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
cancel-in-progress: true
1313
jobs:
1414
evaluate:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-slim
1616
if: "!contains(github.event.head_commit.message, 'skip ci')"
1717
env:
1818
JULIA_PKG_SERVER: ''

.github/workflows/spell-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ concurrency:
99
cancel-in-progress: true
1010
jobs:
1111
spell-check:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-slim
1313
if: "!contains(github.event.head_commit.message, 'skip ci')"
1414
steps:
1515
- name: Check out repository

.github/workflows/test-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
version:
2424
- '1'
2525
os:
26-
- ubuntu-latest
26+
- ubuntu-slim
2727
arch:
2828
- x64
2929
env:

.github/workflows/test-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
version:
2222
- '1'
2323
os:
24-
- ubuntu-latest
24+
- ubuntu-slim
2525
- windows-latest
2626
arch:
2727
- x64
2828
include:
2929
- version: '1.6' # test on oldest supported version
3030
arch: x64
31-
os: ubuntu-latest
31+
os: ubuntu-slim
3232
env:
3333
JULIA_PKG_SERVER: ''
3434
steps:

0 commit comments

Comments
 (0)