File tree 3 files changed +9
-9
lines changed 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 7
7
// Update 'VARIANT' to pick a Node version: 16, 14, 12.
8
8
// Append -bullseye or -buster to pin to an OS version.
9
9
// Use -bullseye variants on local arm64/Apple Silicon.
10
- "args" : { "VARIANT" : " 16 " }
10
+ "args" : { "VARIANT" : " 22 " }
11
11
},
12
12
13
13
// Set *default* container specific settings.json values on container create.
Original file line number Diff line number Diff line change 5
5
build :
6
6
runs-on : ubuntu-latest
7
7
steps :
8
- - uses : actions/checkout@v2
9
- - name : Use Node.js 18.x
10
- uses : actions/setup-node@v1
8
+ - uses : actions/checkout@v4
9
+ - name : Use Node.js
10
+ uses : actions/setup-node@v4
11
11
with :
12
- node-version : 18 .x
12
+ node-version : 22 .x
13
13
- name : npm install, build, and test
14
14
run : |
15
15
npm install
Original file line number Diff line number Diff line change 8
8
publish-npm :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
12
- - uses : actions/setup-node@v3
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-node@v4
13
13
with :
14
- node-version : 18
14
+ node-version : 22
15
15
registry-url : https://registry.npmjs.org/
16
16
cache : npm
17
17
- run : npm ci
18
18
- run : npm test
19
19
- run : npm version ${TAG_NAME} --git-tag-version=false
20
20
env :
21
21
TAG_NAME : ${{ github.event.release.tag_name }}
22
- - run : npm whoami; npm --ignore-scripts publish
22
+ - run : npm whoami; npm --ignore-scripts publish --provenance
23
23
env :
24
24
NODE_AUTH_TOKEN : ${{secrets.npm_token}}
You can’t perform that action at this time.
0 commit comments