Skip to content

Commit d8b53ba

Browse files
committed
upgrade go version to 1.23.6
1 parent 9a639d3 commit d8b53ba

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/e2e-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2525
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
26-
with:
27-
go-version: 1.23.5
26+
with:
27+
go-version: 1.23.6
2828
- name: Import environment variables from file
2929
run: |
3030
cat ".github/env" >> "$GITHUB_ENV"
@@ -55,8 +55,8 @@ jobs:
5555
steps:
5656
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5757
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
58-
with:
59-
go-version: 1.23.5
58+
with:
59+
go-version: 1.23.6
6060
- name: Import environment variables from file
6161
run: |
6262
cat ".github/env" >> "$GITHUB_ENV"
@@ -87,8 +87,8 @@ jobs:
8787
steps:
8888
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
8989
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
90-
with:
91-
go-version: 1.23.5
90+
with:
91+
go-version: 1.23.6
9292
- name: Import environment variables from file
9393
run: |
9494
cat ".github/env" >> "$GITHUB_ENV"

.github/workflows/govuln.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1919
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2020
with:
21-
go-version: 1.23.5
21+
go-version: 1.23.6
2222
- run: |
2323
set -euo pipefail
2424

.github/workflows/integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2020
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2121
with:
22-
go-version: 1.23.5
22+
go-version: 1.23.6
2323
- name: tests
2424
run: |
2525
go install github.com/onsi/ginkgo/v2/ginkgo

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1919
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2020
with:
21-
go-version: 1.23.5
21+
go-version: 1.23.6
2222
- name: golangci-lint
2323
uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # v6.2.0
2424
with:

.github/workflows/unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2020
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2121
with:
22-
go-version: 1.23.5
22+
go-version: 1.23.6
2323
- name: tests
2424
run: |
2525
make test

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23.5 AS builder
2+
FROM golang:1.23.6 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module github.com/netbox-community/netbox-operator
55

66
go 1.23.0
77

8-
toolchain go1.23.5
8+
toolchain go1.23.6
99

1010
require (
1111
github.com/go-logr/logr v1.4.2

0 commit comments

Comments
 (0)