Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.25"
GO_VERSION: "1.26"
KIND_VERSION: "0.31.0"
GO111MODULE: "on"
OPERATOR_IMAGE: "quay.io/backube/volsync"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
contents: write

env:
GO_VERSION: "1.25"
GO_VERSION: "1.26"
KUBECTL_VERSION: "1.32.2"
KUBECONFIG: /tmp/kubeconfig

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.25 AS golang-builder
FROM golang:1.26 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.25 AS builder
FROM golang:1.26 AS builder

# Copy the go source
COPY ./custom-scorecard-tests/. /workspace/
Expand Down
1 change: 1 addition & 0 deletions Procedures.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ from the csv.spec when it's empty for us.

* Go
* Change the version number in [operator.yml](.github/workflows/operator.yml)
* Change the version number in [release.yml](.github/workflows/release.yml)
* Change the version number in [go.mod](go.mod)
* Run `go mod tidy -go=X.Y`
* Change the version number in [custom-scorecard-tests/go.mod](custom-scorecard-tests/go.mod)
Expand Down
2 changes: 1 addition & 1 deletion custom-scorecard-tests/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module main

go 1.25.3
go 1.26.0

require github.com/operator-framework/api v0.39.0

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.25.0
go 1.26.0

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