Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Upgrade to Go 1.22 🚀 #2176

Merged
merged 1 commit into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/function-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
--serve-all-traffic-latest-revision \
--region=asia-northeast1 \
--memory=128Mi \
--runtime=go121 \
--runtime=go122 \
--service-account=function@primap.iam.gserviceaccount.com \
--entry-point=${FUNCTION_ENTRY_POINT} \
--timeout=${FUNCTION_TIMEOUT} \
Expand Down
2 changes: 1 addition & 1 deletion function/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21
FROM golang:1.22

RUN apt-get update \
&& apt-get install -y openjdk-17-jre \
Expand Down
4 changes: 2 additions & 2 deletions function/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/sue445/primap

go 1.21
go 1.22

toolchain go1.21.0
toolchain go1.22.0

require (
cloud.google.com/go/firestore v1.15.0
Expand Down
Loading