Skip to content

Commit e96f10d

Browse files
committed
ci(github actions): update workflow plugins to fix deployment steps running on nodejs 18
#57
1 parent fdfbe07 commit e96f10d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/npm-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
node: [ 14, 16, 18 ]
2424
name: Node ${{ matrix.node }} test
2525
steps:
26-
- uses: actions/checkout@v3
27-
- uses: actions/setup-node@v3
26+
- uses: actions/checkout@v4
27+
- uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ matrix.node }}
3030
cache: 'npm'
@@ -35,13 +35,13 @@ jobs:
3535
needs: build
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v3
39-
- uses: actions/setup-node@v3
38+
- uses: actions/checkout@v4
39+
- uses: actions/setup-node@v4
4040
with:
4141
node-version: 18
4242
registry-url: https://registry.npmjs.org/
4343
cache: 'npm'
4444
- run: npm ci
4545
- run: pwd
4646
- run: rm -rf ../../_temp/.npmrc
47-
- run: npm run release
47+
- run: npm run release

0 commit comments

Comments
 (0)