File tree Expand file tree Collapse file tree 5 files changed +13283
-14766
lines changed
Expand file tree Collapse file tree 5 files changed +13283
-14766
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - name : Checkout source code
10- uses : actions/checkout@v2
10+ uses : actions/checkout@v6
1111 with :
1212 fetch-depth : 0
1313 - name : Setup Node.js
14- uses : actions/setup-node@v2
14+ uses : actions/setup-node@v6
1515 with :
16- node-version : ' 14 '
16+ node-version : ' 24 '
1717 - name : Install dependencies
1818 run : npm ci
1919 - name : Build the project
2626 with :
2727 repo-token : ${{ secrets.GITHUB_TOKEN }}
2828 - name : Upload code coverage report to workflow as an artifact
29- uses : actions/upload-artifact@v2
29+ uses : actions/upload-artifact@v6
3030 with :
3131 name : istanbul-code-coverage.zip
3232 path : coverage
3333 - name : Upload code coverage report to codecov.io and comment in pull request
34- uses : codecov/codecov-action@v1
34+ uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change @@ -10,21 +10,21 @@ jobs:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - name : Checkout source code
13- uses : actions/checkout@v2
13+ uses : actions/checkout@v6
1414 with :
1515 fetch-depth : 0
1616 - name : Setup Node.js
17- uses : actions/setup-node@v2
17+ uses : actions/setup-node@v6
1818 with :
19- node-version : 14
19+ node-version : 24
2020 - name : Install dependencies
2121 run : npm ci
2222 - name : Build the project
2323 run : npm run build:production
2424 - name : Run tests and do code coverage check
2525 run : npm run test:coverage
2626 - name : Upload code coverage report to codecov.io
27- uses : codecov/codecov-action@v1
27+ uses : codecov/codecov-action@v5
2828 - name : Upload Sonar report to sonarcloud.io
2929 uses : sonarsource/sonarcloud-github-action@master
3030 env :
4545 - name : Build documentation
4646 run : npm run docs
4747 - name : Publish documentation to github pages
48- uses : JamesIves/github-pages-deploy-action@3.7.1
48+ uses : JamesIves/github-pages-deploy-action@v4.8.0
4949 with :
5050 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5151 BRANCH : gh-pages-documentation
Original file line number Diff line number Diff line change 1111 if : github.event.workflow_run.conclusion == 'success'
1212 steps :
1313 - name : Checkout source code
14- uses : actions/checkout@v2
14+ uses : actions/checkout@v6
1515 with :
1616 repository : ${{ github.event.workflow_run.head_repository.full_name }}
1717 ref : ${{ github.event.workflow_run.head_branch }}
You can’t perform that action at this time.
0 commit comments