Skip to content

Commit

Permalink
test(deps): update docker image versions to node-20.14.0 (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored Jun 24, 2024
1 parent f1db5fa commit c8643a9
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ executors:
resource_class: macos.m1.medium.gen1
browsers:
docker:
- image: 'cypress/browsers:node-20.9.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1'
- image: 'cypress/browsers:node-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1'

jobs:
win-test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chrome-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
chrome:
runs-on: ubuntu-22.04
# https://github.com/cypress-io/cypress-docker-images
container: cypress/browsers:node-20.9.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1
container: cypress/browsers:node-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cache:

# this job installs npm dependencies and Cypress
install:
image: cypress/base:20.11.1
image: cypress/base:20.14.0
stage: build

script:
Expand All @@ -35,7 +35,7 @@ install:

# all jobs that actually run tests can use the same definition
.job_template:
image: cypress/base:20.11.1
image: cypress/base:20.14.0
stage: test
script:
# print CI environment variables for reference
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://documentation.codeship.com/pro/languages-frameworks/nodejs/

# use Cypress provided image with all dependencies included
FROM cypress/base:20.11.1
FROM cypress/base:20.14.0
RUN node --version
RUN npm --version
WORKDIR /home/node/app
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pipeline {
agent {
// this image provides everything needed to run Cypress
docker {
image 'cypress/base:20.9.0'
image 'cypress/base:20.14.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion basic/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
test:
docker:
- image: cypress/base:20.11.1
- image: cypress/base:20.14.0
steps:
- checkout
# restore folders with npm dependencies and Cypress binary
Expand Down
2 changes: 1 addition & 1 deletion basic/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cache:
- cache/Cypress

test:
image: cypress/base:20.11.1
image: cypress/base:20.14.0
stage: test
script:
- npm ci
Expand Down
2 changes: 1 addition & 1 deletion basic/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pipeline {
agent {
// this image provides everything needed to run Cypress
docker {
image 'cypress/base:20.9.0'
image 'cypress/base:20.14.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion basic/codeship-pro/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://documentation.codeship.com/pro/languages-frameworks/nodejs/

# use Cypress provided image with all dependencies included
FROM cypress/base:20.11.1
FROM cypress/base:20.14.0
RUN node --version
RUN npm --version
WORKDIR /home/node/app
Expand Down
2 changes: 1 addition & 1 deletion buddy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
type: "BUILD"
working_directory: "/buddy/cypress-example-kitchensink"
docker_image_name: "cypress/base"
docker_image_tag: "20.9.0"
docker_image_tag: "20.14.0"
execute_commands:
- "npm install --force"
- "npm run cy:verify"
Expand Down

0 comments on commit c8643a9

Please sign in to comment.