Skip to content

Commit 0d05a55

Browse files
authored
refactor: try out new ubuntu version (#625)
1 parent 97e8c52 commit 0d05a55

16 files changed

+16
-16
lines changed

.github/workflows/00-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
init:
88
name: Init
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: 🛑 Cancel Previous Runs
1212
uses: styfle/[email protected]

.github/workflows/00-scan-secrets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
TruffleHog:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
99
steps:
1010
- name: ⬇ Checkout repo
1111
uses: actions/checkout@v4

.github/workflows/01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build:
88
name: Build
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/01-get-publish-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
publish:
2020
name: Get and save publish version
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
2222
outputs:
2323
release: ${{ steps.releaseCheck.outputs.release }}
2424
preRelease: ${{ steps.releaseCheck.outputs.preRelease }}

.github/workflows/01-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
lint:
88
name: Lint
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/01-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
test:
88
name: Test
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇️ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/02-deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
deploy:
1818
name: Deploy
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
2020
concurrency:
2121
group: ${{ github.workflow }}-${{ github.ref }}
2222
steps:

.github/workflows/03-publish-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
publish:
2121
name: Publish latest package versions to GitHub Packages
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
2323
permissions:
2424
id-token: write
2525
steps:

.github/workflows/99-add-url-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
url:
88
name: 💬 Add url for gh-page as issue comment to PR
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
1010
steps:
1111
- name: ⬇ Checkout repo
1212
uses: actions/checkout@v4

.github/workflows/99-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
dependabot:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
99
if: ${{ github.actor == 'dependabot[bot]' }}
1010
steps:
1111
- name: ⬇ Dependabot metadata

0 commit comments

Comments
 (0)