Skip to content

Commit

Permalink
fix(deps): update CI Docker usage to cypress/base:18.14.1 (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed Apr 5, 2023
1 parent 0f63ee2 commit d70aecf
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Expand Up @@ -20,7 +20,7 @@ cache:

# this job installs NPM dependencies and Cypress
install:
image: cypress/base:latest
image: cypress/base:18.14.1
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:10
image: cypress/base:18.14.1
stage: test
script:
# print CI environment variables for reference
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
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:10
FROM cypress/base:18.14.1
RUN node --version
RUN npm --version
WORKDIR /home/node/app
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -37,7 +37,7 @@ pipeline {
agent {
// this image provides everything needed to run Cypress
docker {
image 'cypress/base:10'
image 'cypress/base:18.14.1'
}
}

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

test:
image: cypress/base:latest
image: cypress/base:18.14.1
stage: test
script:
- npm ci
Expand Down
2 changes: 1 addition & 1 deletion basic/Jenkinsfile
Expand Up @@ -2,7 +2,7 @@ pipeline {
agent {
// this image provides everything needed to run Cypress
docker {
image 'cypress/base:latest'
image 'cypress/base:18.14.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion basic/codeship-pro/Dockerfile
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:latest
FROM cypress/base:18.14.1
RUN node --version
RUN npm --version
WORKDIR /home/node/app
Expand Down
2 changes: 1 addition & 1 deletion buddy.yml
Expand Up @@ -8,7 +8,7 @@
type: "BUILD"
working_directory: "/buddy/cypress-example-kitchensink"
docker_image_name: "cypress/base"
docker_image_tag: "latest"
docker_image_tag: "18.14.1"
execute_commands:
- "npm install --force"
- "npm run cy:verify"
Expand Down

0 comments on commit d70aecf

Please sign in to comment.