Skip to content

Commit 3f8ed6a

Browse files
dependabot[bot]henrybear327
authored andcommitted
Bump golang from 1.23.6 to 1.24.1
Bumps golang from 1.23.6 to 1.24.1. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5008ced commit 3f8ed6a

9 files changed

+14
-14
lines changed

.github/env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
golang-version=1.23
1+
golang-version=1.24
22
kind-version=v0.25.0
33
kind-image=kindest/node:v1.32.0

.github/workflows/e2e-tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2222
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
2323
with:
24-
go-version: 1.23.6
24+
go-version: 1.24.1
2525
- name: Import environment variables from file
2626
run: |
2727
cat ".github/env" >> "$GITHUB_ENV"
@@ -53,7 +53,7 @@ jobs:
5353
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5454
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
5555
with:
56-
go-version: 1.23.6
56+
go-version: 1.24.1
5757
- name: Import environment variables from file
5858
run: |
5959
cat ".github/env" >> "$GITHUB_ENV"
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
8686
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
8787
with:
88-
go-version: 1.23.6
88+
go-version: 1.24.1
8989
- name: Import environment variables from file
9090
run: |
9191
cat ".github/env" >> "$GITHUB_ENV"

.github/workflows/govuln.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1616
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1717
with:
18-
go-version: 1.23.6
18+
go-version: 1.24.1
1919
- run: |
2020
set -euo pipefail
2121

.github/workflows/integration-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1717
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1818
with:
19-
go-version: 1.23.6
19+
go-version: 1.24.1
2020
- name: tests
2121
run: |
2222
go install github.com/onsi/ginkgo/v2/ginkgo

.github/workflows/lint.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1616
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1717
with:
18-
go-version: 1.23.6
18+
go-version: 1.24.1
1919
- name: golangci-lint
20-
uses: golangci/golangci-lint-action@2e788936b09dd82dc280e845628a40d2ba6b204c # v6.3.1
20+
uses: golangci/golangci-lint-action@2226d7cb06a077cd73e56eedd38eecad18e5d837 # v6.5.0
2121
with:
22-
version: v1.60.3
22+
version: v1.64.6
2323
args: --config tools/.golangci.yaml
2424
- run: |
2525
set -euo pipefail

.github/workflows/unit-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
1717
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
1818
with:
19-
go-version: 1.23.6
19+
go-version: 1.24.1
2020
- name: tests
2121
run: |
2222
make test

Dockerfile

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ NetBox Operator extends the Kubernetes API by allowing users to manage NetBox re
1010

1111
## Prerequisites
1212

13-
- go version v1.23.0+
13+
- go version v1.24.0+
1414
- docker version 17.03+
1515
- kubectl version v1.11.3+
1616
- Access to a Kubernetes v1.11.3+ cluster

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
module github.com/netbox-community/netbox-operator
55

6-
go 1.23.0
6+
go 1.24.0
77

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

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

0 commit comments

Comments
 (0)