Skip to content

Commit d70aecf

Browse files
authored
fix(deps): update CI Docker usage to cypress/base:18.14.1 (#614)
1 parent 0f63ee2 commit d70aecf

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cache:
2020

2121
# this job installs NPM dependencies and Cypress
2222
install:
23-
image: cypress/base:latest
23+
image: cypress/base:18.14.1
2424
stage: build
2525

2626
script:
@@ -35,7 +35,7 @@ install:
3535

3636
# all jobs that actually run tests can use the same definition
3737
.job_template:
38-
image: cypress/base:10
38+
image: cypress/base:18.14.1
3939
stage: test
4040
script:
4141
# print CI environment variables for reference

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://documentation.codeship.com/pro/languages-frameworks/nodejs/
33

44
# use Cypress provided image with all dependencies included
5-
FROM cypress/base:10
5+
FROM cypress/base:18.14.1
66
RUN node --version
77
RUN npm --version
88
WORKDIR /home/node/app

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pipeline {
3737
agent {
3838
// this image provides everything needed to run Cypress
3939
docker {
40-
image 'cypress/base:10'
40+
image 'cypress/base:18.14.1'
4141
}
4242
}
4343

basic/.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: cypress/base:latest
5+
- image: cypress/base:18.14.1
66
steps:
77
- checkout
88
# restore folders with npm dependencies and Cypress binary

basic/.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cache:
1313
- cache/Cypress
1414

1515
test:
16-
image: cypress/base:latest
16+
image: cypress/base:18.14.1
1717
stage: test
1818
script:
1919
- npm ci

basic/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pipeline {
22
agent {
33
// this image provides everything needed to run Cypress
44
docker {
5-
image 'cypress/base:latest'
5+
image 'cypress/base:18.14.1'
66
}
77
}
88

basic/codeship-pro/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://documentation.codeship.com/pro/languages-frameworks/nodejs/
33

44
# use Cypress provided image with all dependencies included
5-
FROM cypress/base:latest
5+
FROM cypress/base:18.14.1
66
RUN node --version
77
RUN npm --version
88
WORKDIR /home/node/app

buddy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
type: "BUILD"
99
working_directory: "/buddy/cypress-example-kitchensink"
1010
docker_image_name: "cypress/base"
11-
docker_image_tag: "latest"
11+
docker_image_tag: "18.14.1"
1212
execute_commands:
1313
- "npm install --force"
1414
- "npm run cy:verify"

0 commit comments

Comments
 (0)