Skip to content

Commit 77eab3f

Browse files
authored
CI: use ubuntu-slim instead of ubuntu-latest where sensible (#498)
1 parent c4ad59a commit 77eab3f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818
pull-requests: write
1919
jobs:
2020
publish:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-slim
2222
if: github.event_name == 'workflow_dispatch' || (startsWith(github.event.pull_request.head.ref, 'release/') && github.event.pull_request.merged)
2323
steps:
2424
- uses: actions/checkout@v6

.github/workflows/tagbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
TagBot:
1313
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-slim
1515
steps:
1616
- uses: JuliaRegistries/TagBot@v1
1717
with:

.github/workflows/web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
- '.github/workflows/web.yml'
2020
jobs:
2121
check:
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-slim
2323
steps:
2424
- uses: actions/checkout@v4
2525
- uses: actions/setup-node@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ With the removal of the lookback time window, TagBot now checks all package vers
298298
```yml
299299
jobs:
300300
TagBot:
301-
runs-on: ubuntu-latest
301+
runs-on: ubuntu-slim
302302
env:
303303
TAGBOT_MAX_PRS_TO_CHECK: 500 # Increase limit if needed
304304
steps:

example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
TagBot:
1313
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-slim
1515
steps:
1616
- uses: JuliaRegistries/TagBot@v1
1717
with:

0 commit comments

Comments
 (0)