Skip to content

Commit 27617c8

Browse files

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/cd.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,20 @@ on:
88
jobs:
99
test:
1010
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
1116
strategy:
1217
matrix:
13-
node-version: [18]
18+
node-version: [20]
1419
steps:
1520
- name: Checkout
16-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
1722

1823
- name: Setup Node v${{ matrix.node-version }}
19-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v4
2025
with:
2126
node-version: ${{ matrix.node-version }}
2227
cache: 'npm'
@@ -43,4 +48,4 @@ jobs:
4348
branch: gh-pages
4449
folder: dist/ngb-filterable-dropdown-example
4550
target-folder: ngb-filterable-dropdown-example
46-
token: ${{ secrets.GH_TOKEN }}
51+
token: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)