From bf157857d5f9ab4ec91b4808aa2da5480e62d4ad Mon Sep 17 00:00:00 2001 From: Emese Ban Date: Thu, 12 Jun 2025 18:13:21 +0100 Subject: [PATCH] update build matrix versions to latest patch release of 1.24 and 1.23, go.mod to minimum supported version 1.23.10, and Dockerfile to 1.24.4 Signed-off-by: Emese Ban --- .github/workflows/build.yml | 4 ++-- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95769d40a..9ea05e342 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,8 +33,8 @@ jobs: fail-fast: false matrix: go: - - 1.23.9 - - 1.24.3 + - 1.23.10 + - 1.24.4 target: - test-coverage - test-s3-storage diff --git a/Dockerfile b/Dockerfile index 1ba652a20..8c7576fe2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG GO_VERSION=1.24.3 +ARG GO_VERSION=1.24.4 ARG ALPINE_VERSION=3.21 ARG XX_VERSION=1.6.1 diff --git a/go.mod b/go.mod index b58cc844f..6a85bb512 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/distribution/distribution/v3 -go 1.23.9 +go 1.23.10 require ( cloud.google.com/go/storage v1.45.0