Skip to content

Commit

Permalink
Fix docker-build job
Browse files Browse the repository at this point in the history
Change base docker build job to address an issue with old OpenSSH version related to this GitHub change https://github.blog/2021-09-01-improving-git-protocol-security-github/
  • Loading branch information
ivan-p-nikolov committed Jan 11, 2022
1 parent b3d2d98 commit 85b2b08
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/jobs/docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
parameters:
working-dir:
description: Working directory for this job
type: string
default: project
docker-version:
description: Version of docker
description: Version of base CircleCI image
type: string
default: "18"
default: "2022.01"
github-username:
description: username of user with access to private github repositories
type: env_var_name
Expand All @@ -15,9 +11,8 @@ parameters:
description: token to for the user with access to private github repositories
type: env_var_name
default: GITHUB_TOKEN
working_directory: /<<parameters.working-dir>>
docker:
- image: docker:<<parameters.docker-version>>
- image: cimg/base:<<parameters.docker-version>>
steps:
- checkout
- setup_remote_docker
Expand Down

0 comments on commit 85b2b08

Please sign in to comment.