Skip to content

Commit

Permalink
feat(manifest): upgrade Go version to 1.22.0 (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept authored and yj-yan committed Mar 14, 2024
1 parent b622c1f commit 94c51c9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ arguments:
default: ""
versions.go:
description: Go version to use
default: "1.21.5"
default: "1.22.0"
schema:
type:
- string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(*codegen.File)(

- name: golang
version: '1.21.5'
version: '1.22.0'
# Not used for gRPC clients
- name: nodejs
version: 18.17.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(*codegen.File)(

- name: golang
version: '1.21.5'
version: '1.22.0'
# Not used for gRPC clients
- name: nodejs
version: 18.17.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(*codegen.File)(# syntax=docker/dockerfile:1.0-experimental
FROM gcr.io/outreach-docker/golang:1.21.5 as builder
FROM gcr.io/outreach-docker/golang:1.22.0 as builder
ARG VERSION
ENV GOCACHE "/go-build-cache"
ENV GOPRIVATE github.com/getoutreach/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
// Maps the go module cache on the host to the persistent volume used by devspaces.
// These should be the respective values of `go env GOMODCACHE`.
{
"from": "${env:HOME}/.asdf/installs/golang/1.21.5/packages/pkg/mod",
"to": "/home/dev/.asdf/installs/golang/1.21.5/packages/pkg/mod"
"from": "${env:HOME}/.asdf/installs/golang/1.22.0/packages/pkg/mod",
"to": "/home/dev/.asdf/installs/golang/1.22.0/packages/pkg/mod"
},
{
// Maps the standard library location on the host to the location in the devspace.
// This enables debugging standard library code.
"from": "${env:HOME}/.asdf/installs/golang/1.21.5/go/src",
"to": "/home/dev/.asdf/installs/golang/1.21.5/go/src"
"from": "${env:HOME}/.asdf/installs/golang/1.22.0/go/src",
"to": "/home/dev/.asdf/installs/golang/1.22.0/go/src"
}
],
},
Expand Down

0 comments on commit 94c51c9

Please sign in to comment.