Skip to content

Commit

Permalink
chore(deps): update actions/setup-node action to v4
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
ext committed Nov 5, 2023
1 parent ec30b49 commit 1ea008b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -7,11 +7,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# note: keep in sync with if-statement on coveralls below
node-version: [16.x, 18.x, 20.x]
steps:
- 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 }}
- name: Install dependencies
Expand All @@ -32,5 +33,6 @@ jobs:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
if: matrix.node-version == '20.x'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- name: Install dependencies
run: npm ci
- name: Build
Expand Down

0 comments on commit 1ea008b

Please sign in to comment.