File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,20 +11,20 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v2.3.4
14
+ uses : actions/checkout@v3.5.2
15
15
- name : Install node
16
- uses : actions/setup-node@v2.2.0
16
+ uses : actions/setup-node@v3
17
17
with :
18
18
node-version : ' 18.x'
19
19
- name : Install Python
20
- uses : actions/setup-python@v2.2.2
20
+ uses : actions/setup-python@v4
21
21
with :
22
22
python-version : ' 3.10'
23
23
architecture : ' x64'
24
24
25
25
26
26
- name : Setup pip cache
27
- uses : actions/cache@v2
27
+ uses : actions/cache@v3
28
28
with :
29
29
path : ~/.cache/pip
30
30
key : pip-3.8-${{ hashFiles('package.json') }}
34
34
35
35
- name : Get yarn cache directory path
36
36
id : yarn-cache-dir-path
37
- run : echo "::set-output name= dir:: $(yarn cache dir)"
37
+ run : echo "dir= $(yarn cache dir)" >> $GITHUB_OUTPUT
38
38
- name : Setup yarn cache
39
- uses : actions/cache@v2
39
+ uses : actions/cache@v3
40
40
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
41
41
with :
42
42
path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
You can’t perform that action at this time.
0 commit comments