Skip to content

Commit 85b88c0

Browse files
committed
Add --provenance flag to npm publish
1 parent 8516f80 commit 85b88c0

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/cdp.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,16 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020

2121
- name: Set up Node
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version-file: .nvmrc
25-
cache: "npm"
26-
cache-dependency-path: package-lock.json
2725
registry-url: https://registry.npmjs.org/
2826

2927
- name: Install Dependencies
3028
run: npm ci
3129

3230
- name: Publish Package
33-
run: npm publish --access public
31+
run: npm publish --provenance --access public

0 commit comments

Comments
 (0)