diff options
| author | Jamal Carvalho <jamal@golang.org> | 2023-07-14 23:11:15 +0000 |
|---|---|---|
| committer | Jamal Carvalho <jamal@golang.org> | 2023-07-18 15:46:36 +0000 |
| commit | d2ca55586ca55b08de3b60679d20cd54e17c76c5 (patch) | |
| tree | 0778fb9ebab567bd0ecdcbc08c0cdb938d504f07 | |
| parent | b63f7752e803a9208151c97c7fb1cbce1dc84f3e (diff) | |
| download | go-x-pkgsite-d2ca55586ca55b08de3b60679d20cd54e17c76c5.tar.xz | |
deploy: use go1.21rc3
Change-Id: I36ecd3b393027717fb971284756d3636dcd9c916
Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/509975
kokoro-CI: kokoro <noreply+kokoro@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
Run-TryBot: Jamal Carvalho <jamal@golang.org>
| -rw-r--r-- | deploy/deploy-env.yaml | 4 | ||||
| -rw-r--r-- | deploy/deploy.yaml | 8 | ||||
| -rw-r--r-- | deploy/migrate.yaml | 2 | ||||
| -rw-r--r-- | deploy/sitemap.yaml | 2 | ||||
| -rw-r--r-- | devtools/docker/compose.yaml | 12 |
5 files changed, 14 insertions, 14 deletions
diff --git a/deploy/deploy-env.yaml b/deploy/deploy-env.yaml index 3b0efd6c..deae00e4 100644 --- a/deploy/deploy-env.yaml +++ b/deploy/deploy-env.yaml @@ -22,7 +22,7 @@ steps: args: - $PROJECT_ID - id: Check redistributable - name: golang:1.20 + name: golang:1.21rc3 entrypoint: private/devtools/check_redist.sh - id: Build name: gcr.io/cloud-builders/docker @@ -48,7 +48,7 @@ steps: - -c - deploy/frontend.sh $_ENV gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG) - id: Pagecheck - name: golang:1.20 + name: golang:1.21rc3 entrypoint: deploy/pagecheck.sh args: - $_ENV diff --git a/deploy/deploy.yaml b/deploy/deploy.yaml index f4723173..8b2d757e 100644 --- a/deploy/deploy.yaml +++ b/deploy/deploy.yaml @@ -22,7 +22,7 @@ steps: args: - $PROJECT_ID - id: Check redistributable - name: golang:1.20 + name: golang:1.21rc3 entrypoint: private/devtools/check_redist.sh - id: Build name: gcr.io/cloud-builders/docker @@ -48,7 +48,7 @@ steps: - -c - deploy/frontend.sh staging gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG) - id: Pagecheck - staging - name: golang:1.20 + name: golang:1.21rc3 entrypoint: deploy/pagecheck.sh args: - staging @@ -77,7 +77,7 @@ steps: - -c - deploy/frontend.sh prod gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG) - id: Pagecheck - prod - name: golang:1.20 + name: golang:1.21rc3 entrypoint: deploy/pagecheck.sh args: - prod @@ -88,7 +88,7 @@ steps: - -c - deploy/frontend.sh beta gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG) - id: Pagecheck - beta - name: golang:1.20 + name: golang:1.21rc3 entrypoint: deploy/pagecheck.sh args: - beta diff --git a/deploy/migrate.yaml b/deploy/migrate.yaml index 2c994960..94454507 100644 --- a/deploy/migrate.yaml +++ b/deploy/migrate.yaml @@ -16,7 +16,7 @@ steps: args: - $PROJECT_ID - id: Migrate - name: golang:1.20 + name: golang:1.21rc3 entrypoint: bash dir: private args: diff --git a/deploy/sitemap.yaml b/deploy/sitemap.yaml index 09e185b5..c342f1a4 100644 --- a/deploy/sitemap.yaml +++ b/deploy/sitemap.yaml @@ -9,7 +9,7 @@ steps: args: - $PROJECT_ID - id: Build - name: golang:1.20 + name: golang:1.21rc3 entrypoint: bash dir: private args: diff --git a/devtools/docker/compose.yaml b/devtools/docker/compose.yaml index 38ce4e93..adeb54bc 100644 --- a/devtools/docker/compose.yaml +++ b/devtools/docker/compose.yaml @@ -31,7 +31,7 @@ services: depends_on: - db # This should match the version we are using on Cloud Run. - image: golang:1.20 + image: golang:1.21rc3 environment: <<: [*database-variables, *go-variables] GO_DISCOVERY_TESTDB: ${GO_DISCOVERY_TESTDB:-"true"} @@ -43,7 +43,7 @@ services: - ../../:/pkgsite working_dir: /pkgsite searchtest: - image: golang:1.20 + image: golang:1.21rc3 depends_on: - frontend environment: @@ -55,7 +55,7 @@ services: - ../../:/pkgsite working_dir: /pkgsite api: - image: golang:1.20 + image: golang:1.21rc3 depends_on: - frontend environment: @@ -68,7 +68,7 @@ services: working_dir: /pkgsite frontend: # This should match the version we are using on AppEngine. - image: golang:1.20 + image: golang:1.21rc3 depends_on: - db command: bash -c " @@ -86,7 +86,7 @@ services: working_dir: /pkgsite seeddb: # This should match the version we are using on Cloud Run. - image: golang:1.20 + image: golang:1.21rc3 depends_on: - db # Note: technically we should check that migrations have completed before @@ -140,7 +140,7 @@ services: shm_size: 8G go: # This should match the version we are using on Cloud Run. - image: golang:1.20 + image: golang:1.21rc3 entrypoint: go environment: <<: [*database-variables, *go-variables] |
