From 553583e9ec93c251840890eade1edc685456bbf7 Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Tue, 23 Jan 2024 22:34:44 +0900 Subject: [PATCH] doghouse: bump Go 1.21 --- .github/workflows/deploy-doghouse.yml | 2 +- doghouse/appengine/app.yaml | 2 +- go.mod | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-doghouse.yml b/.github/workflows/deploy-doghouse.yml index dca1bd7588..540fd2b983 100644 --- a/.github/workflows/deploy-doghouse.yml +++ b/.github/workflows/deploy-doghouse.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-go@v5 with: # must sync doghouse/appengine/app.yaml - go-version: "1.20" + go-version: "1.21" - run: go test -v -race ./... deploy: permissions: diff --git a/doghouse/appengine/app.yaml b/doghouse/appengine/app.yaml index ca23001b9e..743eea0cc6 100644 --- a/doghouse/appengine/app.yaml +++ b/doghouse/appengine/app.yaml @@ -1,7 +1,7 @@ # reviewdog app config: https://github.com/settings/apps/reviewdog # https://cloud.google.com/appengine/docs/standard/go/config/appref -runtime: go120 +runtime: go121 # https://cloud.google.com/appengine/docs/standard/go/warmup-requests/configuring inbound_services: diff --git a/go.mod b/go.mod index faf8149d4c..68debe2cc5 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/reviewdog/reviewdog -go 1.21 - -toolchain go1.21.0 +go 1.21.6 require ( cloud.google.com/go/compute/metadata v0.2.3