From f257dd9c4978cbeed68c3f198231eeb15d909ee7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 22:12:06 +0000 Subject: [PATCH 1/2] build: bump golang from 1.22.6 to 1.23.0 Bumps golang from 1.22.6 to 1.23.0. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile.alpine | 2 +- Dockerfile.debian | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 3629e020..a62151bb 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,7 +1,7 @@ ARG DOCKER_GEN_VERSION=main # Build docker-gen from scratch -FROM --platform=$BUILDPLATFORM golang:1.22.6-alpine as go-builder +FROM --platform=$BUILDPLATFORM golang:1.23.0-alpine as go-builder ENV CGO_ENABLED=0 diff --git a/Dockerfile.debian b/Dockerfile.debian index 5cf5b1cc..3fb52a6f 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -1,7 +1,7 @@ ARG DOCKER_GEN_VERSION=main # Build docker-gen from scratch -FROM --platform=$BUILDPLATFORM golang:1.22.6 as go-builder +FROM --platform=$BUILDPLATFORM golang:1.23.0 as go-builder ENV CGO_ENABLED=0 From 2be061abb41ef83d6bb5c55244c633478e7ef6df Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Tue, 27 Aug 2024 06:55:02 +0200 Subject: [PATCH 2/2] build: bump minimal go version to 1.22 --- .github/workflows/assets.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/assets.yml b/.github/workflows/assets.yml index e9015e2b..6d60f2d5 100644 --- a/.github/workflows/assets.yml +++ b/.github/workflows/assets.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: "1.21" + go-version-file: go.mod - name: Build release assets run: make release diff --git a/go.mod b/go.mod index 79c492c5..6529b756 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/nginx-proxy/docker-gen -go 1.21.0 +go 1.22.0 require ( github.com/BurntSushi/toml v1.3.2