Skip to content

Commit

Permalink
Update actions to remove deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Feb 8, 2023
1 parent e92d373 commit 8d36cb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -8,16 +8,16 @@ jobs:
matrix:
node-version: [14, 16, 18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- uses: coverallsapp/github-action@v1.1.2
- uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.github_token }}
flag-name: run-node-${{ matrix.node-version }}
Expand All @@ -26,7 +26,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: coverallsapp/github-action@v1.1.2
- uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

0 comments on commit 8d36cb0

Please sign in to comment.