Skip to content

Commit

Permalink
chore: update node pipeline to 20.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsmith committed Dec 29, 2023
1 parent d1d5462 commit e70da11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ runs:
using: composite
steps:
- name: install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20.10.0'
- run: corepack prepare [email protected] --activate
shell: bash
- run: yarn set version 3.5.0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: './.github/actions/install'
lint:
needs: install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: yarn install
Expand All @@ -20,7 +20,7 @@ jobs:
needs: [install, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: yarn install
uses: ./.github/actions/yarn-nm-install
- name: Restore Cypress binary
Expand All @@ -35,7 +35,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: yarn install
uses: ./.github/actions/yarn-nm-install
- name: Release
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cypress/base:18.16.0
FROM cypress/base:20.10.0

ENV CYPRESS_updateSnapshots=false
ENV CYPRESS_debugSnapshots=false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"jest-image-snapshot": "^6.1.0"
},
"volta": {
"node": "18.16.0",
"node": "20.10.0",
"yarn": "3.5.0"
}
}

0 comments on commit e70da11

Please sign in to comment.