Skip to content

Commit

Permalink
CI: Migrate GitHub Actions from v1 to v4 to avoid warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jdforrester authored and edg2s committed Nov 18, 2024
1 parent fefbd36 commit 4039675
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
Expand All @@ -28,7 +28,7 @@ jobs:
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.lcov
Expand Down

0 comments on commit 4039675

Please sign in to comment.