Skip to content

Commit abd17b4

Browse files
authored
Merge pull request #1722 from felixfontein/ci
Tests: use container images from https://github.com/getsops/ci-container-images
2 parents 5cc2d3b + 02a570e commit abd17b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hcvault/keysource_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func TestMain(m *testing.M) {
4141
}
4242

4343
// Pull the image, create a container based on it, and run it
44-
resource, err := pool.Run("vault", testVaultVersion, []string{"VAULT_DEV_ROOT_TOKEN_ID=" + testVaultToken})
44+
resource, err := pool.Run("ghcr.io/getsops/ci-container-images/vault", testVaultVersion, []string{"VAULT_DEV_ROOT_TOKEN_ID=" + testVaultToken})
4545
if err != nil {
4646
logger.Fatalf("could not start resource: %s", err)
4747
}

kms/keysource_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const (
3333
// testLocalKMSImage is a container image repository reference to a mock
3434
// version of AWS' Key Management Service.
3535
// Ref: https://github.com/nsmithuk/local-kms
36-
testLocalKMSImage = "docker.io/nsmithuk/local-kms"
36+
testLocalKMSImage = "ghcr.io/getsops/ci-container-images/local-kms"
3737
// testLocalKMSImage is the container image tag to use.
3838
testLocalKMSTag = "3.11.1"
3939
)

0 commit comments

Comments
 (0)