We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89cf8ba commit cdb87e7Copy full SHA for cdb87e7
1 file changed
.github/workflows/publish.yml
@@ -6,22 +6,24 @@ on:
6
- '[0-9]*.[0-9]*.[0-9]*'
7
8
permissions:
9
- contents: write
10
- id-token: write # npm OIDC Trusted Publishing + provenance
+ id-token: write
+ contents: read
11
12
jobs:
13
publish:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
17
18
- uses: pnpm/action-setup@v4
19
with:
20
version: 10.14.0
21
22
- - uses: actions/setup-node@v4
+ - uses: actions/setup-node@v6
23
24
- node-version: 20
+ node-version: '24'
25
+ registry-url: 'https://registry.npmjs.org'
26
+ package-manager-cache: false
27
28
- name: Install dependencies
29
run: pnpm install --prefer-frozen-lockfile
0 commit comments