Skip to content

Commit

Permalink
update version of step source
Browse files Browse the repository at this point in the history
  • Loading branch information
SmnHgr committed Feb 9, 2024
1 parent 8430d82 commit c72a754
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/scanner-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
# uses: ./.github/workflows/scanner-build.yml
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "18"

Expand All @@ -41,10 +41,10 @@ jobs:
# uses: ./.github/workflows/scanner-build.yml
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '18'

Expand All @@ -61,20 +61,20 @@ jobs:
# uses: ./.github/workflows/scanner-build.yml
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'

- name: Install dependencies
run: npm ci --prefer-offline

- name: Unit test
run: npm run test:unittest
- name: Upload coverage report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/cobertura-coverage.xml
Expand Down

0 comments on commit c72a754

Please sign in to comment.