Skip to content

Commit cf6d3db

Browse files
authored
ci: update github actions (#172)
1 parent eb3ee9c commit cf6d3db

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [ubuntu-latest]
33-
node: [18.18.0, 18.x, 20.x, 21.x]
33+
node: [18.18.0, 18.x, 20.x, 22.x]
3434
include:
3535
- os: windows-latest
3636
node: lts/*

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
permissions:
99
contents: read
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
with:
1313
persist-credentials: false
14-
- uses: actions/setup-node@v3
14+
- uses: actions/setup-node@v4
1515
- uses: beemojs/conventional-pr-action@v3
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
release-type: node
1818
package-name: test-release-please
1919
# The logic below handles the npm publication:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
# these if statements ensure that a publication only occurs when
2222
# a new release is created:
2323
if: ${{ steps.release.outputs.release_created }}
24-
- uses: actions/setup-node@v3
24+
- uses: actions/setup-node@v4
2525
with:
26-
node-version: 16
26+
node-version: 18
2727
registry-url: 'https://registry.npmjs.org'
2828
if: ${{ steps.release.outputs.release_created }}
2929
- run: npm ci

0 commit comments

Comments
 (0)