From a211577782e5614681517afd7e3763761aa5ac3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:38:23 +0200 Subject: [PATCH] Bump golang from 1.22.5-alpine to 1.23.0-alpine (#139) Bumps golang from 1.22.5-alpine to 1.23.0-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7cda9ac..397f980 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5 as build-env +FROM golang:1.23.0 as build-env ARG ACTION_VERSION=unknown ARG REVIVE_VERSION=v1.3.9 @@ -13,7 +13,7 @@ COPY . . RUN go install -ldflags="-X 'main.version=${ACTION_VERSION}'" -FROM golang:1.22.5-alpine +FROM golang:1.23.0-alpine LABEL repository="https://github.com/morphy2k/revive-action" LABEL homepage="https://github.com/morphy2k/revive-action"