Skip to content

Commit

Permalink
Update all Github Actions to use Node v20
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffesquivels committed May 30, 2024
1 parent 99d964b commit e8f50dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
node: [ '18', '20', '22' ]
name: Node ${{ matrix.node }} build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: browser-actions/setup-chrome@latest
Expand All @@ -22,7 +22,7 @@ jobs:
- uses: browser-actions/setup-firefox@latest
with:
firefox-version: latest-beta
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-node${{ matrix.node }}-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit e8f50dc

Please sign in to comment.