From 20d95317a3896dfcbcb00d56874698ae7903c158 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:18:18 -1000 Subject: [PATCH 1/2] chore: update Dockerfile to use go1.23 --- .github/actions/latest-kubo-tag/Dockerfile | 2 +- .github/actions/update-with-latest-versions/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/latest-kubo-tag/Dockerfile b/.github/actions/latest-kubo-tag/Dockerfile index 56b04f4a8..956bdf30c 100644 --- a/.github/actions/latest-kubo-tag/Dockerfile +++ b/.github/actions/latest-kubo-tag/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.23 ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y jq && rm -rf /var/lib/apt/lists/* diff --git a/.github/actions/update-with-latest-versions/Dockerfile b/.github/actions/update-with-latest-versions/Dockerfile index 56b04f4a8..956bdf30c 100644 --- a/.github/actions/update-with-latest-versions/Dockerfile +++ b/.github/actions/update-with-latest-versions/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.23 ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y jq && rm -rf /var/lib/apt/lists/* From f4aefb8a4d646f3c58e5ec2646cf49ddaf3f8880 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Thu, 17 Oct 2024 15:48:18 +0200 Subject: [PATCH 2/2] chore: go.mod 1.23 --- tools/http-api-docs/go.mod | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/http-api-docs/go.mod b/tools/http-api-docs/go.mod index 70dac6630..974891353 100644 --- a/tools/http-api-docs/go.mod +++ b/tools/http-api-docs/go.mod @@ -1,8 +1,6 @@ module http-api-docs -go 1.22 - -toolchain go1.22.2 +go 1.23 require ( github.com/Stebalien/go-json-doc v0.0.2