Skip to content

Commit 34520a5

Browse files
authored
Merge pull request #294 from spinkube/dani/go-1.23
Update to go1.23
2 parents 6d5bd3d + e2088d8 commit 34520a5

File tree

9 files changed

+20
-22
lines changed

9 files changed

+20
-22
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.22.x'
22+
go-version: '1.23.x'
2323
cache: true
2424

2525
- name: Setup gotestsum
@@ -74,12 +74,12 @@ jobs:
7474
steps:
7575
- uses: actions/setup-go@v5
7676
with:
77-
go-version: '1.22.x'
77+
go-version: '1.23.x'
7878
- uses: actions/checkout@v4
7979
- name: golangci-lint
8080
uses: golangci/golangci-lint-action@v6
8181
with:
82-
version: v1.55.2
82+
version: v1.60.1
8383
args: --timeout=10m
8484

8585
lint_shell:
@@ -98,7 +98,7 @@ jobs:
9898
- name: Setup Go
9999
uses: actions/setup-go@v5
100100
with:
101-
go-version: '1.22.x'
101+
go-version: '1.23.x'
102102
cache: true
103103
- name: Install dependencies
104104
run: go mod download

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Go
1313
uses: actions/setup-go@v5
1414
with:
15-
go-version: "1.22.x"
15+
go-version: "1.23.x"
1616
cache: true
1717
- name: run e2e
1818
run: go test ./e2e -v

.github/workflows/helm-install-smoketest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Go
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: "1.22.x"
17+
go-version: "1.23.x"
1818

1919
- name: Install helm
2020
uses: Azure/setup-helm@v4

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- name: Setup Go
9191
uses: actions/setup-go@v5
9292
with:
93-
go-version: '1.22.x'
93+
go-version: '1.23.x'
9494
cache: true
9595

9696
- name: Install dependencies

.github/workflows/smoketest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Go
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: "1.22.x"
17+
go-version: "1.23.x"
1818

1919
- name: setup k3d
2020
uses: engineerd/[email protected]

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# Build the manager binary
4-
FROM --platform=${BUILDPLATFORM} golang:1.22 as builder
4+
FROM --platform=${BUILDPLATFORM} golang:1.23 AS builder
55
ARG TARGETOS
66
ARG TARGETARCH
77

flake.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
pkgs = import nixpkgs { inherit system; };
1818

1919
buildDeps = with pkgs; [
20-
go_1_22
20+
go_1_23
2121
gnumake
2222
git
2323
];

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/spinkube/spin-operator
22

3-
go 1.22.3
4-
5-
toolchain go1.22.4
3+
go 1.23.0
64

75
require (
86
github.com/go-logr/logr v1.4.2

0 commit comments

Comments
 (0)