File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout repository
18
- uses : actions/checkout@v2
18
+ uses : actions/checkout@v4
19
19
with :
20
20
# Ensure to have complete history of commits pushed with given push operation
21
21
# It's loose and imperfect assumption that no more than 30 commits will be pushed at once
Original file line number Diff line number Diff line change @@ -17,19 +17,19 @@ jobs:
17
17
GITHUB_TOKEN : ${{ secrets.USER_GITHUB_TOKEN }}
18
18
steps :
19
19
- name : Checkout repository
20
- uses : actions/checkout@v2
20
+ uses : actions/checkout@v4
21
21
22
22
- name : Retrieve node_modules from cache
23
23
id : cacheNodeModules
24
- uses : actions/cache@v2
24
+ uses : actions/cache@v4
25
25
with :
26
26
path : |
27
27
~/.npm
28
28
node_modules
29
29
key : npm-v18-${{ runner.os }}-refs/heads/master-${{ hashFiles('package.json') }}
30
30
31
31
- name : Install Node.js and npm
32
- uses : actions/setup-node@v1
32
+ uses : actions/setup-node@v4
33
33
with :
34
34
node-version : 18.x
35
35
registry-url : https://registry.npmjs.org
Original file line number Diff line number Diff line change 18
18
sls-version : [2, 3]
19
19
steps :
20
20
- name : Checkout repository
21
- uses : actions/checkout@v2
21
+ uses : actions/checkout@v4
22
22
with :
23
23
# For commitlint purpose ensure to have complete list of PR commits
24
24
# It's loose and imperfect assumption that PR has no more than 30 commits
33
33
34
34
- name : Retrieve dependencies from cache
35
35
id : cacheNpm
36
- uses : actions/cache@v2
36
+ uses : actions/cache@v4
37
37
with :
38
38
path : |
39
39
~/.npm
@@ -44,12 +44,12 @@ jobs:
44
44
npm-v18-${{ runner.os }}-refs/heads/master-
45
45
46
46
- name : Set up Python 3.9
47
- uses : actions/setup-python@v2
47
+ uses : actions/setup-python@v5
48
48
with :
49
49
python-version : 3.9
50
50
51
51
- name : Install Node.js and npm
52
- uses : actions/setup-node@v1
52
+ uses : actions/setup-node@v4
53
53
with :
54
54
node-version : 18.x
55
55
You can’t perform that action at this time.
0 commit comments