From d22be8a3b57438125cc236173b9ddc401efa0b80 Mon Sep 17 00:00:00 2001 From: collin-lee Date: Mon, 1 Jun 2026 22:39:18 -0700 Subject: [PATCH] Update to golang 1.26.3 --- .github/workflows/main.yaml | 2 +- .github/workflows/pullrequest.yaml | 2 +- Dockerfile | 2 +- Dockerfile.integration | 2 +- examples/xds-sotw-config-server/Dockerfile | 2 +- examples/xds-sotw-config-server/go.mod | 2 +- go.mod | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 69cce14b..a1912fac 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -49,7 +49,7 @@ jobs: - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version: "1.26.2" + go-version: "1.26.3" - name: run pre-commits run: | diff --git a/.github/workflows/pullrequest.yaml b/.github/workflows/pullrequest.yaml index 45f338d4..6159fb25 100644 --- a/.github/workflows/pullrequest.yaml +++ b/.github/workflows/pullrequest.yaml @@ -37,7 +37,7 @@ jobs: - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 with: - go-version: "1.26.2" + go-version: "1.26.3" - name: run pre-commits run: | diff --git a/Dockerfile b/Dockerfile index c1fc11e9..92d1914c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.2@sha256:b54cbf583d390341599d7bcbc062425c081105cc5ef6d170ced98ef9d047c716 AS build +FROM golang:1.26.3@sha256:2d6c80227255c3112a4d08e67ba98e58efd3846daf15d9d7d4c389565d881b1a AS build WORKDIR /ratelimit ENV GOPROXY=https://proxy.golang.org diff --git a/Dockerfile.integration b/Dockerfile.integration index 50c76d6c..c06d125c 100644 --- a/Dockerfile.integration +++ b/Dockerfile.integration @@ -1,5 +1,5 @@ # Running this docker image runs the integration tests. -FROM golang:1.26.2@sha256:b54cbf583d390341599d7bcbc062425c081105cc5ef6d170ced98ef9d047c716 +FROM golang:1.26.3@sha256:2d6c80227255c3112a4d08e67ba98e58efd3846daf15d9d7d4c389565d881b1a RUN apt-get update -y && apt-get install sudo stunnel4 redis memcached -y && rm -rf /var/lib/apt/lists/* diff --git a/examples/xds-sotw-config-server/Dockerfile b/examples/xds-sotw-config-server/Dockerfile index 8780ad62..589d0a17 100644 --- a/examples/xds-sotw-config-server/Dockerfile +++ b/examples/xds-sotw-config-server/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26.2@sha256:b54cbf583d390341599d7bcbc062425c081105cc5ef6d170ced98ef9d047c716 AS build +FROM golang:1.26.3@sha256:2d6c80227255c3112a4d08e67ba98e58efd3846daf15d9d7d4c389565d881b1a AS build WORKDIR /xds-server COPY . . diff --git a/examples/xds-sotw-config-server/go.mod b/examples/xds-sotw-config-server/go.mod index 6e1ad414..323a0faa 100644 --- a/examples/xds-sotw-config-server/go.mod +++ b/examples/xds-sotw-config-server/go.mod @@ -1,6 +1,6 @@ module github.com/envoyproxy/ratelimit/examples/xds-sotw-config-server -go 1.26.1 +go 1.26.3 require ( github.com/envoyproxy/go-control-plane v0.12.1-0.20240123181358-841e293a220b diff --git a/go.mod b/go.mod index a4ddd12f..03a1f6cc 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/envoyproxy/ratelimit -go 1.26.2 +go 1.26.3 require ( github.com/DataDog/datadog-go/v5 v5.5.0