File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
test :
10
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
11
16
strategy :
12
17
matrix :
13
- node-version : [18 ]
18
+ node-version : [20 ]
14
19
steps :
15
20
- name : Checkout
16
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
17
22
18
23
- name : Setup Node v${{ matrix.node-version }}
19
- uses : actions/setup-node@v3
24
+ uses : actions/setup-node@v4
20
25
with :
21
26
node-version : ${{ matrix.node-version }}
22
27
cache : ' npm'
43
48
branch : gh-pages
44
49
folder : dist/ngb-filterable-dropdown-example
45
50
target-folder : ngb-filterable-dropdown-example
46
- token : ${{ secrets.GH_TOKEN }}
51
+ token : ${{ secrets.GH_TOKEN }}
You can’t perform that action at this time.
0 commit comments