File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v2
41
+ uses : actions/checkout@v3
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
45
- uses : github/codeql-action/init@v1
45
+ uses : github/codeql-action/init@v2
46
46
with :
47
47
languages : ${{ matrix.language }}
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
53
53
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
54
54
# If this step fails, then you should remove it and run the build manually (see below)
55
55
- name : Autobuild
56
- uses : github/codeql-action/autobuild@v1
56
+ uses : github/codeql-action/autobuild@v2
57
57
58
58
# ℹ️ Command-line programs to run using the OS shell.
59
59
# 📚 https://git.io/JvXDl
67
67
# make release
68
68
69
69
- name : Perform CodeQL Analysis
70
- uses : github/codeql-action/analyze@v1
70
+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 10
10
build : # make sure build/ci work properly
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
- name : Install node dependencies
15
15
run : |
16
16
npm install
20
20
run : |
21
21
npm run all
22
22
- name : Upload dist
23
- uses : actions/upload-artifact@v2
23
+ uses : actions/upload-artifact@v3
24
24
with :
25
25
name : dist
26
26
path : dist
30
30
needs :
31
31
- build
32
32
steps :
33
- - uses : actions/checkout@v2
33
+ - uses : actions/checkout@v3
34
34
- name : Download dist
35
- uses : actions/download-artifact@v2
35
+ uses : actions/download-artifact@v3
36
36
with :
37
37
name : dist
38
38
path : dist
@@ -50,12 +50,12 @@ jobs:
50
50
- build
51
51
- test
52
52
steps :
53
- - uses : actions/checkout@v2
53
+ - uses : actions/checkout@v3
54
54
with :
55
55
persist-credentials : false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
56
56
fetch-depth : 0 # otherwise, there would be errors pushing refs to the destination repository.
57
57
- name : Download dist
58
- uses : actions/download-artifact@v2
58
+ uses : actions/download-artifact@v3
59
59
with :
60
60
name : dist
61
61
path : dist
You can’t perform that action at this time.
0 commit comments