chore: use gcr.io for postgres image in CI (#7935)

This commit is contained in:
Dean Sheather
2023-06-09 23:39:55 +10:00
committed by GitHub
parent e4744686ec
commit c60ea38691
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ func main() {
"run",
"--rm",
"--network=host",
fmt.Sprintf("postgres:%d", minimumPostgreSQLVersion),
fmt.Sprintf("gcr.io/coder-dev-1/postgres:%d", minimumPostgreSQLVersion),
}, cmdArgs...)
}
cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...) //#nosec