File tree 2 files changed +14
-12
lines changed
2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 6
6
- master
7
7
workflow_dispatch :
8
8
9
- permissions :
10
- contents : read
11
- pages : write
12
- id-token : write
13
-
14
9
concurrency :
15
10
group : " deploy"
16
11
cancel-in-progress : true
@@ -20,30 +15,35 @@ jobs:
20
15
runs-on : ubuntu-latest
21
16
steps :
22
17
- name : Checkout
23
- uses : actions/checkout@v4
18
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
19
+ with :
20
+ persist-credentials : false
24
21
- name : Setup GitHub Pages
25
22
id : pages
26
- uses : actions/configure-pages@v4
23
+ uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b
27
24
- name : Install Node.js
28
- uses : actions/setup-node@v4
25
+ uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
29
26
with :
30
27
node-version : 20
31
28
- name : Install dependencies
32
29
run : npm ci
33
30
- name : Build
34
31
run : npm run build
35
32
- name : Upload artifact
36
- uses : actions/upload-pages-artifact@v3
33
+ uses : actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa
37
34
with :
38
35
path : ./build
39
36
40
37
deploy :
41
38
environment :
42
39
name : github-pages
43
40
url : ${{ steps.deployment.outputs.page_url }}
41
+ permissions :
42
+ pages : write
43
+ id-token : write
44
44
runs-on : ubuntu-latest
45
45
needs : build
46
46
steps :
47
47
- name : Deploy to GitHub Pages
48
48
id : deployment
49
- uses : actions/deploy-pages@v4
49
+ uses : actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e
Original file line number Diff line number Diff line change 6
6
build :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v4
9
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
10
+ with :
11
+ persist-credentials : false
10
12
- name : Install Node.js
11
- uses : actions/setup-node@v4
13
+ uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
12
14
with :
13
15
node-version : 20
14
16
- run : npm ci
You can’t perform that action at this time.
0 commit comments