Skip to content

Commit

Permalink
deploy,devtools: update go version
Browse files Browse the repository at this point in the history
use go1.22rc1

Change-Id: I57dfddb84b551eca9b08bd988411dcd161745611
Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/555196
kokoro-CI: kokoro <[email protected]>
Run-TryBot: Hyang-Ah Hana Kim <[email protected]>
Auto-Submit: Hyang-Ah Hana Kim <[email protected]>
TryBot-Result: Gopher Robot <[email protected]>
Reviewed-by: Jonathan Amsterdam <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
  • Loading branch information
hyangah authored and gopherbot committed Jan 17, 2024
1 parent f8a3afa commit 9bc5594
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions deploy/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ steps:
args:
- $PROJECT_ID
- id: Check redistributable
name: golang:1.21rc3
name: golang:1.22rc1
entrypoint: private/devtools/check_redist.sh
- id: Build
name: gcr.io/cloud-builders/docker
Expand All @@ -48,7 +48,7 @@ steps:
- -c
- deploy/frontend.sh staging gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG)
- id: Pagecheck - staging
name: golang:1.21rc3
name: golang:1.22rc1
entrypoint: deploy/pagecheck.sh
args:
- staging
Expand Down Expand Up @@ -77,7 +77,7 @@ steps:
- -c
- deploy/frontend.sh prod gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG)
- id: Pagecheck - prod
name: golang:1.21rc3
name: golang:1.22rc1
entrypoint: deploy/pagecheck.sh
args:
- prod
Expand All @@ -88,7 +88,7 @@ steps:
- -c
- deploy/frontend.sh beta gcr.io/$PROJECT_ID/frontend:$(cat _BUILD_TAG)
- id: Pagecheck - beta
name: golang:1.21rc3
name: golang:1.22rc1
entrypoint: deploy/pagecheck.sh
args:
- beta
Expand Down
2 changes: 1 addition & 1 deletion deploy/migrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
args:
- $PROJECT_ID
- id: Migrate
name: golang:1.21rc3
name: golang:1.22rc1
entrypoint: bash
dir: private
args:
Expand Down
2 changes: 1 addition & 1 deletion deploy/sitemap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:
args:
- $PROJECT_ID
- id: Build
name: golang:1.21rc3
name: golang:1.22rc1
entrypoint: bash
dir: private
args:
Expand Down
12 changes: 6 additions & 6 deletions devtools/docker/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
depends_on:
- db
# This should match the version we are using on Cloud Run.
image: golang:1.21rc3
image: golang:1.22rc1
environment:
<<: [*database-variables, *go-variables]
GO_DISCOVERY_TESTDB: ${GO_DISCOVERY_TESTDB:-"true"}
Expand All @@ -42,7 +42,7 @@ services:
- ../../:/pkgsite
working_dir: /pkgsite
searchtest:
image: golang:1.21rc3
image: golang:1.22rc1
depends_on:
- frontend
environment:
Expand All @@ -53,7 +53,7 @@ services:
- ../../:/pkgsite
working_dir: /pkgsite
api:
image: golang:1.21rc3
image: golang:1.22rc1
depends_on:
- frontend
environment:
Expand All @@ -65,7 +65,7 @@ services:
working_dir: /pkgsite
frontend:
# This should match the version we are using on AppEngine.
image: golang:1.21rc3
image: golang:1.22rc1
depends_on:
- db
command: bash -c "
Expand All @@ -82,7 +82,7 @@ services:
working_dir: /pkgsite
seeddb:
# This should match the version we are using on Cloud Run.
image: golang:1.21rc3
image: golang:1.22rc1
depends_on:
- db
# Note: technically we should check that migrations have completed before
Expand Down Expand Up @@ -135,7 +135,7 @@ services:
shm_size: 8G
go:
# This should match the version we are using on Cloud Run.
image: golang:1.21rc3
image: golang:1.22rc1
entrypoint: go
environment:
<<: [*database-variables, *go-variables]
Expand Down

0 comments on commit 9bc5594

Please sign in to comment.