Skip to content
Merged
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/build-and-publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.25'
go-version: '1.26'
- name: Make test
run: |
make test
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/lint-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.25'
check-latest: true
go-version: '1.26'
cache: false

- uses: actions/checkout@v3
Expand All @@ -23,6 +24,6 @@ jobs:
uses: katexochen/go-tidy-check@v2

- name: golangci-lint
uses: golangci/golangci-lint-action@v8
uses: golangci/golangci-lint-action@v9
with:
version: v2.5.0
version: v2.9.0
2 changes: 1 addition & 1 deletion .github/workflows/test-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.25'
go-version: '1.26'

- name: Make test
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.25 AS builder
FROM golang:1.26 AS builder
ARG TARGETOS
ARG TARGETARCH

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/PDOK/volume-operator

go 1.25.1
go 1.26.3

require (
github.com/onsi/ginkgo/v2 v2.22.1
Expand Down
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const (
blobPrefixAnnotation = annotationPrefix + "/blob-prefix"
volumePathAnnotation = annotationPrefix + "/volume-path"
storageCapacityAnnotation = annotationPrefix + "/storage-capacity"
storageClassNameAnnotation = annotationPrefix + "/storage-class-name"
storageClassNameAnnotation = annotationPrefix + "/storage-class"
defaultStorageClass = "managed-premium-zrs"

RevisionAnnotation = "deployment.kubernetes.io/revision"
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/volume_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func createPvcIfNotExists(ctx context.Context, obj client.Client, conf config.Co
},
},
DataSourceRef: &corev1.TypedObjectReference{
APIGroup: smoothoperator.Pointer(avp.GroupVersion.Group),
APIGroup: new(avp.GroupVersion.Group),
Kind: populator.Kind,
Name: populator.Name,
},
Expand Down
Loading