File tree 2 files changed +18
-7
lines changed
2 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 4
4
directory : " /"
5
5
schedule :
6
6
interval : weekly
7
+
8
+ - package-ecosystem : github-actions
9
+ directory : " /"
10
+ schedule :
11
+ interval : weekly
Original file line number Diff line number Diff line change @@ -15,10 +15,12 @@ jobs:
15
15
name : Lint
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
20
20
- name : Use Node.js latest
21
- uses : actions/setup-node@v2
21
+ uses : actions/setup-node@v4
22
+ with :
23
+ cache : npm
22
24
23
25
- name : npm install
24
26
run : npm ci
@@ -27,22 +29,26 @@ jobs:
27
29
run : npm run lint
28
30
29
31
- name : Initialize CodeQL
30
- uses : github/codeql-action/init@v1
32
+ uses : github/codeql-action/init@v3
31
33
with :
32
- languages : javascript
34
+ tools : linked
35
+ languages : javascript, actions
36
+ queries : security-and-quality
33
37
34
38
- name : Perform CodeQL Analysis
35
- uses : github/codeql-action/analyze@v1
39
+ uses : github/codeql-action/analyze@v3
36
40
37
41
38
42
test :
39
43
name : Test
40
44
runs-on : ubuntu-latest
41
45
steps :
42
- - uses : actions/checkout@v2
46
+ - uses : actions/checkout@v4
43
47
44
48
- name : Use Node.js latest
45
- uses : actions/setup-node@v2
49
+ uses : actions/setup-node@v4
50
+ with :
51
+ cache : npm
46
52
47
53
- name : npm install and test
48
54
run : npm cit
You can’t perform that action at this time.
0 commit comments