Skip to content

Commit

Permalink
chore(deps): bump actions/setup-node from 2 to 3 (#4062)
Browse files Browse the repository at this point in the history
* Use node 16

Co-authored-by: Marcos Cáceres <marcos@marcosc.com>
  • Loading branch information
dependabot[bot] and marcoscaceres authored Mar 3, 2022
1 parent d454c98 commit cdd4f08
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
curl -sL https://api.github.com/repos/w3c/respec/pulls/${{ github.event.pull_request.number }}/files -o /tmp/pr_files.json
cat /tmp/pr_files.json | jq -r '.[].filename' | grep -qE "^builds/" || exit 0
echo "::error::Uh oh! builds/ was changed."; exit 1
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- run: npm ci
- run: npm run lint

Expand All @@ -38,8 +38,8 @@ jobs:
needs: lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- run: npm ci
- run: npm run test:build
- run: npm run build:w3c
Expand All @@ -54,8 +54,8 @@ jobs:
needs: lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- name: install & build
run: |
npm ci
Expand All @@ -73,8 +73,8 @@ jobs:
needs: lint
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- name: install & build
run: |
npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- name: install & build
run: |
npm ci
Expand All @@ -50,8 +50,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- name: install & build
run: |
npm ci
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/regressions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- run: npm ci
- run: npm run build:w3c
- uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -41,8 +41,8 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with: { node-version: 14, cache: npm }
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- run: npm ci --production --ignore-scripts
- uses: actions/download-artifact@v2
with:
Expand Down

0 comments on commit cdd4f08

Please sign in to comment.