We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f405eab commit cf4c99bCopy full SHA for cf4c99b
.github/workflows/release.yml
@@ -8,6 +8,11 @@ jobs:
8
release:
9
name: Release
10
runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write # to be able to publish a GitHub release
13
+ issues: write # to be able to comment on released issues
14
+ pull-requests: write # to be able to comment on released pull requests
15
+ id-token: write # to enable use of OIDC for npm provenance
16
steps:
17
- uses: actions/[email protected]
18
@@ -16,7 +21,8 @@ jobs:
21
with:
22
node-version: 18
23
cache: 'npm'
19
-
24
+ - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
25
+ run: npm audit signatures
20
26
- name: Tag latest release
27
run: |
28
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
0 commit comments