File tree 4 files changed +115
-165
lines changed
4 files changed +115
-165
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
20
20
steps :
21
21
- name : Clone repository
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
24
24
- name : Set up Node.js
25
- uses : actions/setup-node@v3
25
+ uses : actions/setup-node@v4
26
26
with :
27
27
node-version : " lts/*"
28
28
cache : npm
@@ -39,10 +39,10 @@ jobs:
39
39
40
40
steps :
41
41
- name : Clone repository
42
- uses : actions/checkout@v3
42
+ uses : actions/checkout@v4
43
43
44
44
- name : Set up Node.js
45
- uses : actions/setup-node@v3
45
+ uses : actions/setup-node@v4
46
46
with :
47
47
node-version : " lts/*"
48
48
cache : npm
54
54
run : npm run build
55
55
56
56
- name : Upload build files
57
- uses : actions/upload-artifact@v3
57
+ uses : actions/upload-artifact@v4
58
58
if : github.repository == 'jakearchibald/svgomg' && github.ref == 'refs/heads/live'
59
59
with :
60
60
name : build
@@ -69,10 +69,10 @@ jobs:
69
69
70
70
steps :
71
71
- name : Clone repository
72
- uses : actions/checkout@v3
72
+ uses : actions/checkout@v4
73
73
74
74
- name : Download build files
75
- uses : actions/download-artifact@v3
75
+ uses : actions/download-artifact@v4
76
76
with :
77
77
name : build
78
78
path : ./build
Original file line number Diff line number Diff line change 10
10
branches :
11
11
- main
12
12
- live
13
+ - " !dependabot/**"
13
14
schedule :
14
15
- cron : " 0 0 * * 0"
15
16
workflow_dispatch :
@@ -25,12 +26,18 @@ jobs:
25
26
26
27
steps :
27
28
- name : Checkout repository
28
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
29
30
30
31
- name : Initialize CodeQL
31
- uses : github/codeql-action/init@v2
32
+ uses : github/codeql-action/init@v3
32
33
with :
33
34
languages : " javascript"
35
+ queries : +security-and-quality
36
+
37
+ - name : Autobuild
38
+ uses : github/codeql-action/autobuild@v3
34
39
35
40
- name : Perform CodeQL Analysis
36
- uses : github/codeql-action/analyze@v2
41
+ uses : github/codeql-action/analyze@v3
42
+ with :
43
+ category : " /language:javascript"
You can’t perform that action at this time.
0 commit comments