Skip to content

Commit 1eecfbe

Browse files
committed
go bump
1 parent f7f511c commit 1eecfbe

File tree

10 files changed

+17
-14
lines changed

10 files changed

+17
-14
lines changed

.github/workflows/integration-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go
2525
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
2626
with:
27-
go-version: "1.24"
27+
go-version: "1.25"
2828
- name: Set up tools
2929
run: |
3030
# Install ginkgo version from go.mod

.github/workflows/kops-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
2525
with:
26-
go-version: "1.24"
26+
go-version: "1.25"
2727
- name: Set up tools
2828
run: |
2929
# Install ginkgo version from go.mod

.github/workflows/nightly-cron-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
2525
with:
26-
go-version: "1.24"
26+
go-version: "1.25"
2727
- name: Set up tools
2828
run: |
2929
# Install ginkgo version from go.mod

.github/workflows/pr-automated-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
1919
with:
20-
go-version: "1.24"
20+
go-version: "1.25"
2121
check-latest: true
2222
- name: Set up tools
2323
run: |
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Go
5555
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
5656
with:
57-
go-version: "1.24"
57+
go-version: "1.25"
5858
check-latest: true
5959
- name: Build CNI images
6060
run: make multi-arch-cni-build
@@ -71,7 +71,7 @@ jobs:
7171
- name: Set up Go
7272
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
7373
with:
74-
go-version: "1.24"
74+
go-version: "1.25"
7575
check-latest: true
7676
- name: Build CNI Init images
7777
run: make multi-arch-cni-init-build

.github/workflows/pr-manual-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Go
3030
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
3131
with:
32-
go-version: "1.24"
32+
go-version: "1.25"
3333
- name: Set up tools
3434
run: |
3535
# Install ginkgo version from go.mod

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
2424
with:
25-
go-version: "1.24"
25+
go-version: "1.25"
2626
- name: Generate CNI YAML
2727
run: make generate-cni-yaml
2828
- name: Create eks-charts PR

.github/workflows/soak-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
2020
with:
21-
go-version: "1.24"
21+
go-version: "1.25"
2222
- name: Set up tools
2323
run: |
2424
# Install ginkgo version from go.mod

.github/workflows/weekly-cron-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # refs/tags/v6.0.0
2525
with:
26-
go-version: "1.24"
26+
go-version: "1.25"
2727
- name: Set up tools
2828
run: |
2929
# Install ginkgo version from go.mod

test/agent/go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module github.com/aws/amazon-vpc-cni-k8s/test/agent
22

3-
go 1.24.1
3+
go 1.25.3
44

55
require (
6+
github.com/aws/amazon-vpc-cni-k8s v1.20.4
67
github.com/coreos/go-iptables v0.8.0
78
github.com/vishvananda/netlink v1.3.1
8-
golang.org/x/sys v0.32.0
9+
golang.org/x/sys v0.34.0
910
)
1011

1112
require github.com/vishvananda/netns v0.0.5 // indirect

test/agent/go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
github.com/aws/amazon-vpc-cni-k8s v1.20.4 h1:GLij+rFUE6gtUncGXeJqwlzDx10CTzDCf3746YXa1m8=
2+
github.com/aws/amazon-vpc-cni-k8s v1.20.4/go.mod h1:HfKBVKc/z9vSFZN06uWOWfwFKthvl10hGoSWhIwiF0A=
13
github.com/coreos/go-iptables v0.8.0 h1:MPc2P89IhuVpLI7ETL/2tx3XZ61VeICZjYqDEgNsPRc=
24
github.com/coreos/go-iptables v0.8.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q=
35
github.com/vishvananda/netlink v1.3.1 h1:3AEMt62VKqz90r0tmNhog0r/PpWKmrEShJU0wJW6bV0=
@@ -6,5 +8,5 @@ github.com/vishvananda/netns v0.0.5 h1:DfiHV+j8bA32MFM7bfEunvT8IAqQ/NzSJHtcmW5zd
68
github.com/vishvananda/netns v0.0.5/go.mod h1:SpkAiCQRtJ6TvvxPnOSyH3BMl6unz3xZlaprSwhNNJM=
79
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
810
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
9-
golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20=
10-
golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
11+
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
12+
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=

0 commit comments

Comments
 (0)