Skip to content

Commit cd8271d

Browse files
committed
CI: update CI runners to ubuntu-24.04
1 parent 3b248e0 commit cd8271d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os:
9-
- ubuntu-22.04
9+
- ubuntu-24.04
1010
node-version: [ 20.x, 22.x, 24.x ]
1111
go-version:
1212
- 1.16.x

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
npm-publish:
77
needs: unit-tests
88
if: github.ref == 'refs/heads/master' && needs.unit-tests.result == 'success'
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/checkout@v6
1212
- name: Install Node.js
@@ -26,7 +26,7 @@ jobs:
2626
# note: github actions won't run a job if you don't call one of the status check functions, so `always()` is called since it evalutes to `true`
2727
if: ${{ always() && needs.unit-tests.result == 'success' && (needs.npm-publish.result == 'success' || needs.npm-publish.result == 'skipped') }}
2828
needs: [unit-tests, npm-publish]
29-
runs-on: ubuntu-22.04
29+
runs-on: ubuntu-24.04
3030
steps:
3131
- uses: actions/checkout@v6
3232
- name: Build Docker images

0 commit comments

Comments
 (0)