Skip to content

Commit 30f2f78

Browse files
authored
Bump golang from 1.25.0 to 1.25.1 (#428)
1 parent 8eb551c commit 30f2f78

File tree

9 files changed

+13
-11
lines changed

9 files changed

+13
-11
lines changed

.github/workflows/e2e-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
2525
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2626
with:
27-
go-version: 1.25.0
27+
go-version: 1.25.1
2828
- name: Import environment variables from file
2929
run: |
3030
cat ".github/env" >> "$GITHUB_ENV"
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
3939
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
4040
with:
41-
go-version: 1.25.0
41+
go-version: 1.25.1
4242
- name: Import environment variables from file
4343
run: |
4444
cat ".github/env" >> "$GITHUB_ENV"
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
5353
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
5454
with:
55-
go-version: 1.25.0
55+
go-version: 1.25.1
5656
- name: Import environment variables from file
5757
run: |
5858
cat ".github/env" >> "$GITHUB_ENV"

.github/workflows/govuln.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
1616
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
1717
with:
18-
go-version: 1.25.0
18+
go-version: 1.25.1
1919
- run: |-
2020
set -euo pipefail
2121

.github/workflows/integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
1717
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
1818
with:
19-
go-version: 1.25.0
19+
go-version: 1.25.1
2020
- name: tests
2121
run: |-
2222
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
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
1616
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
1717
with:
18-
go-version: 1.25.0
18+
go-version: 1.25.1
1919
- name: golangci-lint
2020
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
2121
with:

.github/workflows/unit-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
1717
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
1818
with:
19-
go-version: 1.25.0
19+
go-version: 1.25.1
2020
- name: tests
2121
run: |-
2222
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.25.0 AS builder
2+
FROM golang:1.25.1 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The users will create claims (PrefixClaims & IPAddressClaims), and the NetBox Op
1818

1919
## Prerequisites
2020

21-
- go version v1.25.0+
21+
- go version v1.25.1+
2222
- docker version 17.03+
2323
- kubectl version v1.11.3+
2424
- Access to a Kubernetes v1.11.3+ cluster

docs/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This folder shows some examples how the NetBox Operator can be used.
55
Each example folder contains a README.md which explains how you can set up your local environment to step through the examples.
66

77
Prerequisites:
8-
- go version v1.25.0+
8+
- go version v1.25.1+
99
- docker image netbox-operatore:build-local
1010
- kustomize version v5.5.0+
1111
- kubectl version v1.32.2+

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

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

6-
go 1.25.0
6+
go 1.25
7+
8+
toolchain go1.25.1
79

810
require (
911
github.com/go-logr/logr v1.4.3

0 commit comments

Comments
 (0)