Skip to content

Commit 267191e

Browse files
committed
upgrades gh-actions
1 parent 6d4a3f2 commit 267191e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
build_and_release:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
if: ${{ github.event.inputs.REPOSITORY_NAME == github.repository }}
1717
steps:
1818
- uses: actions/checkout@v4

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
build:
1010
strategy:
1111
matrix:
12-
os: [ ubuntu-22.04 ]
13-
node: [ 20 ]
12+
os: [ ubuntu-24.04 ]
13+
node: [ 20, 22 ]
1414
name: Test Nodejs v${{ matrix.node }} on ${{ matrix.os }}
1515
runs-on: ${{ matrix.os }}
1616
steps:
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
NODE_VERSION: ${{ matrix.node }}
2323
- name: Publish Coveralls
24-
uses: coverallsapp/github-action@v2.2.3
24+
uses: coverallsapp/github-action@v2.3.3
2525
with:
2626
github-token: ${{ secrets.GITHUB_TOKEN }}
2727
flag-name: run-nodejs-v${{ matrix.node }}-${{ matrix.os }}
@@ -30,10 +30,10 @@ jobs:
3030
finish:
3131
name: Finish
3232
needs: build
33-
runs-on: ubuntu-22.04
33+
runs-on: ubuntu-24.04
3434
steps:
3535
- name: Coveralls Finished
36-
uses: coverallsapp/github-action@v2.2.3
36+
uses: coverallsapp/github-action@v2.3.3
3737
with:
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
3939
parallel-finished: true

0 commit comments

Comments
 (0)