Skip to content

Commit

Permalink
Pull v1 tagged versions of the proxy and updater images
Browse files Browse the repository at this point in the history
To avoid pulling in breaking changes on the latest versions of those
images, use v1 tags that we can ensure are compatible with this version
of the updater.
  • Loading branch information
Jurre Stender authored and Jurre Stender committed Oct 19, 2021
1 parent b3b80dc commit e211dd1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- name: GPR login
run: docker login docker.pkg.github.com -u x -p ${{ secrets.GITHUB_TOKEN }}
- name: GRP pull dependabot/dependabot-updater
run: docker pull docker.pkg.github.com/dependabot/dependabot-updater:latest
run: docker pull docker.pkg.github.com/dependabot/dependabot-updater:v1
- name: GRP pull github/dependabot-update-job-proxy
run: docker pull docker.pkg.github.com/github/dependabot-update-job-proxy:latest
run: docker pull docker.pkg.github.com/github/dependabot-update-job-proxy:v1
- run: npm ci
- name: Run integration test files
run: npm run test-integration
4 changes: 2 additions & 2 deletions dist/main/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/main/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import axios from 'axios'
const DEPENDABOT_ACTOR = 'dependabot[bot]'

export const UPDATER_IMAGE_NAME =
'docker.pkg.github.com/dependabot/dependabot-updater:latest'
'docker.pkg.github.com/dependabot/dependabot-updater:v1'
export const PROXY_IMAGE_NAME =
'docker.pkg.github.com/github/dependabot-update-job-proxy:latest'
'docker.pkg.github.com/github/dependabot-update-job-proxy:v1'

export enum DependabotErrorType {
Unknown = 'actions_workflow_unknown',
Expand Down

0 comments on commit e211dd1

Please sign in to comment.