File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 77 // Update 'VARIANT' to pick a Node version: 16, 14, 12.
88 // Append -bullseye or -buster to pin to an OS version.
99 // Use -bullseye variants on local arm64/Apple Silicon.
10- "args" : { "VARIANT" : " 16 " }
10+ "args" : { "VARIANT" : " 22 " }
1111 },
1212
1313 // Set *default* container specific settings.json values on container create.
Original file line number Diff line number Diff line change 55 build :
66 runs-on : ubuntu-latest
77 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
1111 with :
12- node-version : 18 .x
12+ node-version : 22 .x
1313 - name : npm install, build, and test
1414 run : |
1515 npm install
Original file line number Diff line number Diff line change 88 publish-npm :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v3
12- - uses : actions/setup-node@v3
11+ - uses : actions/checkout@v4
12+ - uses : actions/setup-node@v4
1313 with :
14- node-version : 18
14+ node-version : 22
1515 registry-url : https://registry.npmjs.org/
1616 cache : npm
1717 - run : npm ci
1818 - run : npm test
1919 - run : npm version ${TAG_NAME} --git-tag-version=false
2020 env :
2121 TAG_NAME : ${{ github.event.release.tag_name }}
22- - run : npm whoami; npm --ignore-scripts publish
22+ - run : npm whoami; npm --ignore-scripts publish --provenance
2323 env :
2424 NODE_AUTH_TOKEN : ${{secrets.npm_token}}
You can’t perform that action at this time.
0 commit comments