Skip to content

Commit

Permalink
go mod tidy
Browse files Browse the repository at this point in the history
Signed-off-by: Moritz Wanzenböck <moritz.wanzenboeck@linbit.com>
  • Loading branch information
WanzenBug committed Dec 17, 2024
1 parent cdbdba9 commit db57e52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.4
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.22 as builder
FROM --platform=$BUILDPLATFORM golang:1 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module github.com/piraeusdatastore/piraeus-operator/v2

go 1.22.7
go 1.23.0

toolchain go1.23.4

require (
Expand Down
2 changes: 2 additions & 0 deletions pkg/linstorhelper/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ func testTlsConfig(t *testing.T) (*tls.Config, map[string][]byte) {
caCert, err := x509.ParseCertificate(rawCert)
require.NoError(t, err)

cert.Leaf = caCert

caPool := x509.NewCertPool()
caPool.AddCert(caCert)

Expand Down

0 comments on commit db57e52

Please sign in to comment.