File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
# Ensure we are checked out on the master branch
17
17
ref : master
18
18
# Ensure custom credentials are used when pushing
19
19
persist-credentials : false
20
20
- name : Use Node.js
21
- uses : actions/setup-node@v3
21
+ uses : actions/setup-node@v4
22
22
with :
23
23
node-version : ' 16'
24
24
- name : Update simple-icons
Original file line number Diff line number Diff line change 9
9
name : Publish Website
10
10
steps :
11
11
- name : Checkout
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
with :
14
14
persist-credentials : false
15
15
- name : Use Node.js
16
- uses : actions/setup-node@v3
16
+ uses : actions/setup-node@v4
17
17
with :
18
18
node-version : ' 16'
19
- - uses : actions/cache@v2
19
+ - uses : actions/cache@v4
20
20
with :
21
21
path : ~/.npm
22
22
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
23
23
restore-keys : |
24
24
${{ runner.os }}-node-
25
25
- name : Cache build
26
- uses : actions/cache@v2
26
+ uses : actions/cache@v4
27
27
with :
28
28
path : .cache/webpack
29
29
key : ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
You can’t perform that action at this time.
0 commit comments