Skip to content

Commit

Permalink
Update to use golang 1.22.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tesshu Flower <tflower@redhat.com>
(cherry picked from commit 9d6b5fa)
  • Loading branch information
tesshuflower committed Sep 12, 2024
1 parent 0e26599 commit 0fd2e90
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
workflow_dispatch:

env:
GO_VERSION: "1.21"
GO_VERSION: "1.22"
KIND_VERSION: "0.23.0"
GO111MODULE: "on"
OPERATOR_IMAGE: "quay.io/backube/volsync"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
######################################################################
# Establish a common builder image for all golang-based images
FROM golang:1.21 as golang-builder
FROM golang:1.22 as golang-builder
USER root
WORKDIR /workspace
# We don't vendor modules. Enforce that behavior
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.volsync-custom-scorecard-tests
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the volsync-custom-scorecard-tests binary
FROM golang:1.21 as builder
FROM golang:1.22 as builder

# Copy the go source
COPY ./custom-scorecard-tests/. /workspace/
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/backube/volsync

go 1.21.0
go 1.22.0

require (
github.com/dop251/diskrsync v1.3.0
Expand Down

0 comments on commit 0fd2e90

Please sign in to comment.