Skip to content

Commit

Permalink
Merge pull request #1722 from felixfontein/ci
Browse files Browse the repository at this point in the history
Tests: use container images from https://github.com/getsops/ci-container-images
  • Loading branch information
felixfontein authored Dec 25, 2024
2 parents 5cc2d3b + 02a570e commit abd17b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hcvault/keysource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestMain(m *testing.M) {
}

// Pull the image, create a container based on it, and run it
resource, err := pool.Run("vault", testVaultVersion, []string{"VAULT_DEV_ROOT_TOKEN_ID=" + testVaultToken})
resource, err := pool.Run("ghcr.io/getsops/ci-container-images/vault", testVaultVersion, []string{"VAULT_DEV_ROOT_TOKEN_ID=" + testVaultToken})
if err != nil {
logger.Fatalf("could not start resource: %s", err)
}
Expand Down
2 changes: 1 addition & 1 deletion kms/keysource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const (
// testLocalKMSImage is a container image repository reference to a mock
// version of AWS' Key Management Service.
// Ref: https://github.com/nsmithuk/local-kms
testLocalKMSImage = "docker.io/nsmithuk/local-kms"
testLocalKMSImage = "ghcr.io/getsops/ci-container-images/local-kms"
// testLocalKMSImage is the container image tag to use.
testLocalKMSTag = "3.11.1"
)
Expand Down

0 comments on commit abd17b4

Please sign in to comment.