We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10d3e5a commit a866c53Copy full SHA for a866c53
1 file changed
.github/workflows/release.yaml
@@ -7,7 +7,7 @@ jobs:
7
version-check:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v6
11
- name: Install stable Rust
12
uses: actions-rs/toolchain@v1
13
with:
@@ -116,13 +116,10 @@ jobs:
116
run:
117
working-directory: ./node
118
119
- - uses: actions/checkout@v4
120
- # Setup .npmrc file to publish to npm
121
- - uses: actions/setup-node@v4
+ - uses: actions/setup-node@v6
122
123
- node-version: '20.x'
+ node-version: '24'
124
registry-url: 'https://registry.npmjs.org'
125
- - run: npm i
126
- - run: npm publish --access public
127
- env:
128
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ - run: npm ci
+ - run: npm publish
0 commit comments