Skip to content

Commit 302da23

Browse files
authored
security: bump to go 1.23.8 to resolve CVE-2025-22871 (#1597)
Signed-off-by: Anish Ramasekar <[email protected]>
1 parent 350cb28 commit 302da23

File tree

16 files changed

+64
-56
lines changed

16 files changed

+64
-56
lines changed

.github/workflows/azwi-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
# TODO(aramase): add windows test env
24-
env: [ubuntu-20.04, macos-13]
24+
env: [ubuntu-latest, macos-13]
2525
runs-on: ${{ matrix.env }}
2626
steps:
2727
- name: Harden Runner

.github/workflows/azwi-e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
# TODO(aramase): add windows test env
22-
env: [ubuntu-20.04, macos-13]
22+
env: [ubuntu-latest, macos-13]
2323
runs-on: ${{ matrix.env }}
2424
steps:
2525
- name: Harden Runner

.github/workflows/chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
deploy:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
steps:
1818
- name: Harden Runner
1919
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
create-release-pull-request:
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-latest
2020
steps:
2121
- name: Harden Runner
2222
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1

.github/workflows/publish-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
export-registry:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
outputs:
1616
registry: ${{ steps.export.outputs.registry }}
1717
steps:
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
image: [webhook, proxy, proxy-init]
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-latest
3737
steps:
3838
- name: Harden Runner
3939
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
@@ -65,7 +65,7 @@ jobs:
6565
fail-fast: false
6666
matrix:
6767
dir: [examples/msal-go, examples/msal-net/akvdotnet, examples/msal-node, examples/msal-python, examples/msal-java]
68-
runs-on: ubuntu-20.04
68+
runs-on: ubuntu-latest
6969
steps:
7070
- name: Harden Runner
7171
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1

.github/workflows/website.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
deploy:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
steps:
1818
- name: Harden Runner
1919
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ KUSTOMIZE_VER := v4.1.2
5555
KUSTOMIZE_BIN := kustomize
5656
KUSTOMIZE := $(TOOLS_BIN_DIR)/$(KUSTOMIZE_BIN)-$(KUSTOMIZE_VER)
5757

58-
GOLANGCI_LINT_VER := v1.61.0
58+
GOLANGCI_LINT_VER := v1.64.8
5959
GOLANGCI_LINT_BIN := golangci-lint
6060
GOLANGCI_LINT := $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER)
6161

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-bookworm as builder
1+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.8-bookworm@sha256:e052bd5581c75956d08a78b47ba5d12b746aef722f4cd577c98fb571e3072188 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-bookworm as builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.8-bookworm@sha256:e052bd5581c75956d08a78b47ba5d12b746aef722f4cd577c98fb571e3072188 as builder
33

44
ARG LDFLAGS
55

examples/msal-go/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-bookworm as builder
1+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.8-bookworm@sha256:e052bd5581c75956d08a78b47ba5d12b746aef722f4cd577c98fb571e3072188 as builder
22

33
WORKDIR /workspace
44
# Copy the Go Modules manifests

0 commit comments

Comments
 (0)