Skip to content

Commit 44deb3d

Browse files
authored
chore: update to go 1.24.6 (#1645)
Signed-off-by: Anish Ramasekar <[email protected]>
1 parent bdb8258 commit 44deb3d

File tree

17 files changed

+34
-16
lines changed

17 files changed

+34
-16
lines changed

.github/workflows/azwi-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fetch-depth: 0
3636
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3737
with:
38-
go-version: "1.23"
38+
go-version: "1.24"
3939
check-latest: true
4040
- name: Build azwi
4141
run: |

.github/workflows/azwi-e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 0
3434
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3535
with:
36-
go-version: "1.23"
36+
go-version: "1.24"
3737
check-latest: true
3838
- name: Build azwi
3939
run: |

.github/workflows/codecov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
2222
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2323
with:
24-
go-version: "^1.23"
24+
go-version: "^1.24"
2525
check-latest: true
2626
- name: Run tests
2727
run: make test

.github/workflows/create-release-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
ref: "${{ github.event.inputs.based_on_branch }}"
3535
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3636
with:
37-
go-version: "1.23"
37+
go-version: "1.24"
3838
check-latest: true
3939
- run: make release-manifest
4040
env:

.github/workflows/create-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fetch-depth: 0
3333
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3434
with:
35-
go-version: "1.23"
35+
go-version: "1.24"
3636
check-latest: true
3737
- name: Goreleaser
3838
uses: goreleaser/goreleaser-action@336e29918d653399e599bfca99fadc1d7ffbc9f7 # v4.3.0

.github/workflows/scan-vulns.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2727
with:
28-
go-version: "1.23"
28+
go-version: "1.24"
2929
check-latest: true
3030
- uses: golang/govulncheck-action@3a32958c2706f7048305d5a2e53633d7e37e97d0 # v1.0.2
3131

@@ -41,7 +41,7 @@ jobs:
4141

4242
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
4343
with:
44-
go-version: "1.23"
44+
go-version: "1.24"
4545
check-latest: true
4646

4747
- name: Check out code into the Go module directory

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
run:
22
deadline: 20m
3-
go-version: "1.23"
3+
go-version: "1.24"
44

55
linters:
66
disable-all: true

.pipelines/nightly.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
soak_aks_linux:
3838
CLUSTER_NAME: "azwi-aks-linux"
3939
steps:
40+
- task: GoTool@0
41+
inputs:
42+
version: "1.24.6"
4043
- script: make test-e2e
4144
displayName: Webhook E2E test suite
4245
env:
@@ -83,6 +86,9 @@ jobs:
8386
kind_v1_32_3:
8487
KIND_NODE_VERSION: v1.32.3
8588
steps:
89+
- task: GoTool@0
90+
inputs:
91+
version: "1.24.6"
8692
- script: make test-e2e
8793
displayName: Webhook E2E test suite
8894
env:

.pipelines/pr.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
workspace:
2424
clean: all
2525
steps:
26+
- task: GoTool@0
27+
inputs:
28+
version: "1.24.6"
2629
- script: make lint
2730
displayName: golangci-lint
2831
- script: make helm-lint
@@ -46,6 +49,9 @@ jobs:
4649
workspace:
4750
clean: all
4851
steps:
52+
- task: GoTool@0
53+
inputs:
54+
version: "1.24.6"
4955
- script: make test
5056
displayName: Unit test
5157
- job: shellcheck
@@ -81,6 +87,9 @@ jobs:
8187
REGISTRY: upstream.azurecr.io/azure-workload-identity
8288
GINKGO_SKIP: \[AKSSoakOnly\]
8389
steps:
90+
- task: GoTool@0
91+
inputs:
92+
version: "1.24.6"
8493
- script: echo "##vso[task.setvariable variable=CLUSTER_NAME]azwi-e2e-$(openssl rand -hex 2)"
8594
displayName: Set CLUSTER_NAME
8695
condition: ne(variables.LOCAL_ONLY, 'true')
@@ -132,6 +141,9 @@ jobs:
132141
LOCAL_ONLY: "true"
133142
TEST_HELM_CHART: "true"
134143
steps:
144+
- task: GoTool@0
145+
inputs:
146+
version: "1.24.6"
135147
- script: echo "##vso[task.setvariable variable=CLUSTER_NAME]azwi-e2e-$(openssl rand -hex 2)"
136148
displayName: Set CLUSTER_NAME
137149
condition: ne(variables.LOCAL_ONLY, 'true')

docker/proxy-init.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${TARGETPLATFORM:-linux/amd64} registry.k8s.io/build-image/distroless-iptables:v0.7.6
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} registry.k8s.io/build-image/distroless-iptables:v0.8.1
22

33
COPY ./init/init-iptables.sh /bin/
44
RUN chmod +x /bin/init-iptables.sh

0 commit comments

Comments
 (0)