aboutsummaryrefslogtreecommitdiff
path: root/devtools/docker
diff options
context:
space:
mode:
authorJamal Carvalho <jamal@golang.org>2023-01-31 15:39:10 +0000
committerJamal Carvalho <jamal@golang.org>2023-02-01 16:01:36 +0000
commitf93c7b3d884a8dce4ec0696b5c528e83f5e753fb (patch)
treeb28caaf55e92385c73d5a603fc32ca758146e3d5 /devtools/docker
parent035bfc02f3faa0221e0edf90b0a21d3619c95fdd (diff)
downloadgo-x-pkgsite-f93c7b3d884a8dce4ec0696b5c528e83f5e753fb.tar.xz
deploy,devtools: upgrade to go1.20rc3
- Disabled staticcheck while go1.20 is unsupported. - Fixed out of bounds error in doc html parsing. - Fixed test issue related to rand package changes. Change-Id: Ib7b30ed9c40505a5a51d986426f0e41e53a298b1 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/464296 TryBot-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com> Run-TryBot: Jamal Carvalho <jamal@golang.org>
Diffstat (limited to 'devtools/docker')
-rw-r--r--devtools/docker/compose.yaml12
1 files changed, 6 insertions, 6 deletions
diff --git a/devtools/docker/compose.yaml b/devtools/docker/compose.yaml
index 55f234ea..727a8e3f 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.19
+ image: golang:1.20rc3
environment:
<<: *database-variables
<<: *go-variables
@@ -44,7 +44,7 @@ services:
- ../../:/pkgsite
working_dir: /pkgsite
searchtest:
- image: golang:1.19
+ image: golang:1.20rc3
depends_on:
- frontend
environment:
@@ -57,7 +57,7 @@ services:
- ../../:/pkgsite
working_dir: /pkgsite
api:
- image: golang:1.19
+ image: golang:1.20rc3
depends_on:
- frontend
environment:
@@ -70,7 +70,7 @@ services:
working_dir: /pkgsite
frontend:
# This should match the version we are using on AppEngine.
- image: golang:1.19
+ image: golang:1.20rc3
depends_on:
- db
command: bash -c "
@@ -89,7 +89,7 @@ services:
working_dir: /pkgsite
seeddb:
# This should match the version we are using on Cloud Run.
- image: golang:1.19
+ image: golang:1.20rc3
depends_on:
- db
# Note: technically we should check that migrations have completed before
@@ -142,7 +142,7 @@ services:
shm_size: 8G
go:
# This should match the version we are using on Cloud Run.
- image: golang:1.19
+ image: golang:1.20rc3
entrypoint: go
environment:
<<: *database-variables