File tree 5 files changed +22181
-15575
lines changed
5 files changed +22181
-15575
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
11
11
GITHUB_CONTEXT : ${{ toJson(github) }}
12
12
run : echo "$GITHUB_CONTEXT"
13
13
- name : Checkout source code
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
ref : ${{ github.event.pull_request.head.sha }}
17
17
fetch-depth : 0
18
18
- name : Setup Node.js
19
- uses : actions/setup-node@v3
19
+ uses : actions/setup-node@v4
20
20
with :
21
21
node-version : 14
22
22
- name : Install dependencies
30
30
with :
31
31
repo-token : ${{ secrets.GITHUB_TOKEN }}
32
32
- name : Upload code coverage report to workflow as an artifact
33
- uses : actions/upload-artifact@v3
33
+ uses : actions/upload-artifact@v4
34
34
with :
35
35
name : istanbul-code-coverage.zip
36
36
path : coverage
37
37
- name : Upload code coverage report to codecov.io and comment in pull request
38
- uses : codecov/codecov-action@v3
38
+ uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout source code
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
with :
15
15
fetch-depth : 0
16
16
- name : Setup Node.js
17
- uses : actions/setup-node@v3
17
+ uses : actions/setup-node@v4
18
18
with :
19
19
node-version : 14
20
20
- name : Install dependencies
24
24
- name : Run tests and do code coverage check
25
25
run : npm run test:coverage
26
26
- name : Upload code coverage report to codecov.io
27
- uses : codecov/codecov-action@v3
27
+ uses : codecov/codecov-action@v5
28
28
- name : Upload Sonar report to sonarcloud.io
29
29
uses : sonarsource/sonarcloud-github-action@master
30
30
env :
Original file line number Diff line number Diff line change 11
11
if : github.event.workflow_run.conclusion == 'success'
12
12
steps :
13
13
- name : Checkout source code
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v4
15
15
with :
16
16
repository : ${{ github.event.workflow_run.head_repository.full_name }}
17
17
ref : ${{ github.event.workflow_run.head_branch }}
You can’t perform that action at this time.
0 commit comments