Skip to content

Commit 68b790a

Browse files
committed
Update GitHub Actions scripts
1 parent 1200129 commit 68b790a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://github.com/actions/starter-workflows/blob/a85155b04a1b885de7a5021312303fe5c1cb58e4/ci/node.js.yml
1+
# https://github.com/actions/starter-workflows/blob/001b284cc296236d8b6cf318ebab988bbbf69aac/ci/node.js.yml
22

33
name: Node.js CI
44

@@ -14,9 +14,9 @@ jobs:
1414
node-version: [18.x]
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- name: Use Node.js ${{matrix.node-version}}
19-
uses: actions/setup-node@v2
19+
uses: actions/setup-node@v3
2020
with:
2121
node-version: ${{matrix.node-version}}
2222
cache: 'npm'

.github/workflows/npm-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://github.com/actions/starter-workflows/blob/a85155b04a1b885de7a5021312303fe5c1cb58e4/ci/npm-publish.yml
1+
# https://github.com/actions/starter-workflows/blob/001b284cc296236d8b6cf318ebab988bbbf69aac/ci/npm-publish.yml
22

33
name: Node.js Package
44

@@ -10,8 +10,8 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
1515
with:
1616
node-version: 18
1717
- run: npm ci
@@ -22,8 +22,8 @@ jobs:
2222
needs: build
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
26-
- uses: actions/setup-node@v2
25+
- uses: actions/checkout@v3
26+
- uses: actions/setup-node@v3
2727
with:
2828
node-version: 18
2929
registry-url: https://registry.npmjs.org/

0 commit comments

Comments
 (0)