Skip to content

Commit

Permalink
ci: update github actions to latest version (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
ersachin3112 authored Oct 14, 2024
1 parent 2a276d1 commit 54afe33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:
cancel-in-progress: true

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4

This comment has been minimized.

Copy link
@SlyryD

SlyryD Oct 22, 2024

Contributor

Looks like actions/setup-node@v4 doesn't have access to Node v10, failing the workflow

This comment has been minimized.

Copy link
@SlyryD

SlyryD Oct 22, 2024

Contributor

Fix here: #140

with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down Expand Up @@ -78,10 +78,10 @@ jobs:
if: matrix.os == 'windows-latest'
run: git config --global core.autocrlf input

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand All @@ -105,6 +105,6 @@ jobs:
run: npm run test:coverage -- --ci

- name: Submit coverage data to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 54afe33

Please sign in to comment.