Skip to content

Commit

Permalink
Merge branch 'main' into brrygrdn/build-containers-json-for-docker-bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry Gordon authored and GitHub committed Feb 24, 2022
2 parents 39479f4 + b467606 commit e436baa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions __tests__/docker-tags.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import {UPDATER_IMAGE_NAME, PROXY_IMAGE_NAME} from '../src/docker-tags'
describe('Docker tags', () => {
test('UPDATER_IMAGE_NAME', () => {
expect(UPDATER_IMAGE_NAME).toMatch(
/^docker\.pkg\.github\.com\/dependabot\/dependabot-updater:v1$/
/^docker\.pkg\.github\.com\/dependabot\/dependabot-updater@sha256:[a-zA-Z0-9]{64}$/
)
})

test('PROXY_IMAGE_NAME', () => {
expect(PROXY_IMAGE_NAME).toMatch(
/^docker\.pkg\.github\.com\/github\/dependabot-update-job-proxy:v1$/
/^docker\.pkg\.github\.com\/github\/dependabot-update-job-proxy@sha256:[a-zA-Z0-9]{64}$/
)
})
})
2 changes: 1 addition & 1 deletion 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 docker/Dockerfile.proxy
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM docker.pkg.github.com/github/dependabot-update-job-proxy:v1
FROM docker.pkg.github.com/github/dependabot-update-job-proxy@sha256:79b4f9cd5cd93062ee3403c71bbc5ca1939b8fc27f88cf705d6604b738b0c907
2 changes: 1 addition & 1 deletion docker/Dockerfile.updater
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM docker.pkg.github.com/dependabot/dependabot-updater:v1
FROM docker.pkg.github.com/dependabot/dependabot-updater@sha256:58e10e8dad0e79c532fe439161857c09da0ce4f8bbabbe216cd87dd35a39573b
4 changes: 2 additions & 2 deletions docker/containers.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"proxy": "docker.pkg.github.com/github/dependabot-update-job-proxy:v1",
"updater": "docker.pkg.github.com/dependabot/dependabot-updater:v1"
"proxy": "docker.pkg.github.com/github/dependabot-update-job-proxy@sha256:79b4f9cd5cd93062ee3403c71bbc5ca1939b8fc27f88cf705d6604b738b0c907",
"updater": "docker.pkg.github.com/dependabot/dependabot-updater@sha256:58e10e8dad0e79c532fe439161857c09da0ce4f8bbabbe216cd87dd35a39573b"
}

0 comments on commit e436baa

Please sign in to comment.