File tree Expand file tree Collapse file tree 4 files changed +42
-30
lines changed Expand file tree Collapse file tree 4 files changed +42
-30
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
updates :
3
- - package-ecosystem : github-actions
4
- directory : " /"
5
- schedule :
6
- interval : daily
7
- open-pull-requests-limit : 10
8
- - package-ecosystem : npm
9
- directory : " /"
10
- schedule :
11
- interval : daily
12
- open-pull-requests-limit : 10
3
+ - package-ecosystem : github-actions
4
+ directory : /
5
+ schedule :
6
+ interval : daily
7
+ open-pull-requests-limit : 10
8
+
9
+ - package-ecosystem : npm
10
+ directory : /
11
+ schedule :
12
+ interval : daily
13
+ open-pull-requests-limit : 10
Original file line number Diff line number Diff line change 1
- name : ci
1
+ name : CI
2
2
3
3
on :
4
4
push :
10
10
- ' docs/**'
11
11
- ' *.md'
12
12
13
+ permissions :
14
+ contents : read
15
+
13
16
jobs :
14
17
dependency-review :
15
18
name : Dependency Review
16
19
if : github.event_name == 'pull_request'
17
20
runs-on : ubuntu-latest
18
- permissions :
19
- contents : read
20
21
steps :
21
- - name : Check out repo
22
- uses : actions/checkout@v3
22
+ - name : Checkout repository
23
+ uses : actions/checkout@v4
23
24
with :
24
25
persist-credentials : false
25
26
26
27
- name : Dependency review
27
- uses : actions/dependency-review-action@v2
28
+ uses : actions/dependency-review-action@v4
28
29
29
30
test :
30
31
runs-on : ${{ matrix.os }}
31
- permissions :
32
- contents : read
33
32
strategy :
34
33
matrix :
35
34
node-version : [16, 18, 20]
36
35
os : [ubuntu-latest, windows-latest, macOS-latest]
37
36
fail-fast : false
38
37
steps :
39
- - uses : actions/checkout@v3
38
+ - name : Checkout repository
39
+ uses : actions/checkout@v4
40
40
with :
41
41
persist-credentials : false
42
42
45
45
with :
46
46
node-version : ${{ matrix.node-version }}
47
47
check-latest : true
48
+ cache : npm
49
+ cache-dependency-path : package.json
48
50
49
51
- name : Install
50
52
run : |
68
70
coverage :
69
71
needs : test
70
72
runs-on : ubuntu-latest
71
- permissions :
72
- contents : read
73
73
steps :
74
74
- name : Coveralls Finished
75
75
uses : coverallsapp/github-action@master
Original file line number Diff line number Diff line change 1
- name : sast
1
+ name : CodeQL
2
2
3
3
on :
4
4
push :
@@ -11,19 +11,25 @@ jobs:
11
11
name : Analyze
12
12
runs-on : ubuntu-latest
13
13
permissions :
14
+ actions : read
14
15
contents : read
15
16
security-events : write
16
17
strategy :
17
18
fail-fast : true
18
19
matrix :
19
- language : [ 'javascript' ]
20
+ language : [ 'javascript-typescript ' ]
20
21
steps :
21
- - uses : actions/checkout@v3
22
+ - name : Checkout repository
23
+ uses : actions/checkout@v4
22
24
with :
23
25
persist-credentials : false
24
26
25
- - uses : github/codeql-action/init@v3
27
+ - name : Initialize CodeQL
28
+ uses : github/codeql-action/init@v3
26
29
with :
27
30
languages : ${{ matrix.language }}
28
31
29
- - uses : github/codeql-action/analyze@v3
32
+ - name : Perform CodeQL Analysis
33
+ uses : github/codeql-action/analyze@v3
34
+ with :
35
+ category : " /language:${{ matrix.language }}"
Original file line number Diff line number Diff line change 1
- name : " Pull Request Labeler"
1
+ name : Pull Request Labeler
2
+
2
3
on : pull_request_target
3
4
5
+ permissions :
6
+ contents : read
7
+ pull-requests : write
8
+
4
9
jobs :
5
10
label :
6
11
runs-on : ubuntu-latest
7
12
steps :
8
- - uses : actions/labeler@main
9
- with :
10
- repo-token : " ${{ secrets.GITHUB_TOKEN }}"
13
+ - uses : actions/labeler@v5
14
+ with :
15
+ repo-token : " ${{ secrets.GITHUB_TOKEN }}"
You can’t perform that action at this time.
0 commit comments