Skip to content

Commit

Permalink
Bump go to v1.22.3
Browse files Browse the repository at this point in the history
 - Bump go (toolchain) to v1.22.3

 - Remove specific go version from the run configuration in
   .golangci.yml as the Default is to
   "use Go version from the go.mod file"
   (https://golangci-lint.run/usage/configuration/#run-configuration)

 - Bump go base images to v1.22.3
  • Loading branch information
prezha committed May 26, 2024
1 parent 06ab7d4 commit 8ddceef
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
run:
go: "1.22"
issues-exit-code: 1
timeout: 5m

Expand Down
2 changes: 1 addition & 1 deletion docker/minder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.22.2@sha256:aca60c1f21de99aa3a34e653f0cdc8c8ea8fe6480359229809d5bcb974f599ec AS builder
FROM golang:1.22.3@sha256:f43c6f049f04cbbaeb28f0aad3eea15274a7d0a7899a617d0037aec48d7ab010 AS builder
ENV APP_ROOT=/opt/app-root
ENV GOPATH=$APP_ROOT

Expand Down
2 changes: 1 addition & 1 deletion docker/reminder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.22.2@sha256:aca60c1f21de99aa3a34e653f0cdc8c8ea8fe6480359229809d5bcb974f599ec AS builder
FROM golang:1.22.3@sha256:f43c6f049f04cbbaeb28f0aad3eea15274a7d0a7899a617d0037aec48d7ab010 AS builder
ENV APP_ROOT=/opt/app-root
ENV GOPATH=$APP_ROOT

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stacklok/minder

go 1.22.2
go 1.22.3

require (
github.com/ThreeDotsLabs/watermill v1.3.5
Expand Down
4 changes: 1 addition & 3 deletions tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/stacklok/minder/tools

go 1.22

toolchain go1.22.0
go 1.22.3

require (
github.com/bufbuild/buf v1.32.1
Expand Down

0 comments on commit 8ddceef

Please sign in to comment.