Skip to content

Commit c029af0

Browse files
committed
chore: update to go 1.24.6
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
1 parent cb2954e commit c029af0

File tree

15 files changed

+21
-15
lines changed

15 files changed

+21
-15
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/pr.yaml

Lines changed: 6 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

docker/proxy.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.10-bookworm@sha256:1b9955f4f779e11096819e0a2594c9cf568aa2337fea85a45b220bf632376e58 as builder
1+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.6-bookworm@sha256:b55cd0118651789c1c3623f8d8ba7e9f9e131817ec20af3505ca5410603e47a2 as builder
22

33
ARG LDFLAGS
44

docker/webhook.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 mcr.microsoft.com/oss/go/microsoft/golang:1.23.10-bookworm@sha256:1b9955f4f779e11096819e0a2594c9cf568aa2337fea85a45b220bf632376e58 as builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.24.6-bookworm@sha256:b55cd0118651789c1c3623f8d8ba7e9f9e131817ec20af3505ca5410603e47a2 as builder
33

44
ARG LDFLAGS
55

0 commit comments

Comments
 (0)