Skip to content

Commit

Permalink
Github Actions: bumped version of "actions/checkout" and "actions/set…
Browse files Browse the repository at this point in the history
…up-node" from @v2 to @v4
  • Loading branch information
laurent-yoti committed Jan 17, 2024
1 parent 9687a7d commit c57ec7b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting for sonarcloud
fetch-depth: 0

- uses: actions/setup-node@v2.1.2
- uses: actions/setup-node@v4

- run: npm update

Expand All @@ -41,9 +41,9 @@ jobs:
github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v2.1.2
- uses: actions/setup-node@v4
with:
node-version: '14'

Expand Down Expand Up @@ -78,9 +78,9 @@ jobs:
node-version: [14, 16, 18, 20]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v2.1.2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -104,9 +104,9 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v2.1.2
- uses: actions/setup-node@v4

- run: npm install

Expand Down

0 comments on commit c57ec7b

Please sign in to comment.