Skip to content

Commit

Permalink
feat(manifest): upgrade Go version to 1.23.3 (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept authored Nov 11, 2024
1 parent 638523b commit bdc7104
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.23.2"
default: "1.23.3"
schema:
type:
- string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

go 1.22.0

toolchain go1.23.2
toolchain go1.23.3

require (
github.com/getoutreach/gobox v1.90.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

go 1.19

toolchain go1.23.2
toolchain go1.23.3

require (
github.com/getoutreach/gobox v1.90.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module github.com/getoutreach/stencil-golang

go 1.22.0

toolchain go1.23.2
toolchain go1.23.3

require (
github.com/blang/semver/v4 v4.0.0
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.23.2 as builder
FROM gcr.io/outreach-docker/golang:1.23.3 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.23.2/packages/pkg/mod",
"to": "/home/dev/.asdf/installs/golang/1.23.2/packages/pkg/mod"
"from": "${env:HOME}/.asdf/installs/golang/1.23.3/packages/pkg/mod",
"to": "/home/dev/.asdf/installs/golang/1.23.3/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.23.2/go/src",
"to": "/home/dev/.asdf/installs/golang/1.23.2/go/src"
"from": "${env:HOME}/.asdf/installs/golang/1.23.3/go/src",
"to": "/home/dev/.asdf/installs/golang/1.23.3/go/src"
}
],
},
Expand Down

0 comments on commit bdc7104

Please sign in to comment.