Skip to content

Commit ebf3588

Browse files
committed
Build with golang 1.23
Signed-off-by: Tesshu Flower <[email protected]>
1 parent 9dc08b2 commit ebf3588

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/operator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy
1313
workflow_dispatch:
1414

1515
env:
16-
GO_VERSION: "1.22"
16+
GO_VERSION: "1.23"
1717
KIND_VERSION: "0.25.0"
1818
GO111MODULE: "on"
1919
OPERATOR_IMAGE: "quay.io/backube/volsync"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
######################################################################
22
# Establish a common builder image for all golang-based images
3-
FROM golang:1.22 AS golang-builder
3+
FROM golang:1.23 AS golang-builder
44
USER root
55
WORKDIR /workspace
66
# We don't vendor modules. Enforce that behavior

Dockerfile.volsync-custom-scorecard-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the volsync-custom-scorecard-tests binary
2-
FROM golang:1.22 as builder
2+
FROM golang:1.23 as builder
33

44
# Copy the go source
55
COPY ./custom-scorecard-tests/. /workspace/

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/backube/volsync
22

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/dop251/diskrsync v1.3.0

0 commit comments

Comments
 (0)