From 4b1e6b458a46df4f45f6953393b6d6178784db34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:59:13 +0000 Subject: [PATCH] Bump the gomod-version group with 1 update Bumps the gomod-version group with 1 update: golang. Updates `golang` from 1.22.0-alpine3.18 to 1.22.1-alpine3.18 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod-version ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- Dockerfile.release | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6918dedcb9..4b5490e95b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM golang:1.22.0-alpine3.18 AS spicedb-builder +FROM golang:1.22.1-alpine3.18 AS spicedb-builder WORKDIR /go/src/app RUN apk update && apk add --no-cache git COPY . . RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg/mod CGO_ENABLED=0 go build -v ./cmd/... -FROM golang:1.22.0-alpine3.18 AS health-probe-builder +FROM golang:1.22.1-alpine3.18 AS health-probe-builder WORKDIR /go/src/app RUN apk update && apk add --no-cache git RUN git clone https://github.com/grpc-ecosystem/grpc-health-probe.git diff --git a/Dockerfile.release b/Dockerfile.release index aa575bbb03..8c77f362de 100644 --- a/Dockerfile.release +++ b/Dockerfile.release @@ -1,7 +1,7 @@ # vim: syntax=dockerfile ARG BASE=cgr.dev/chainguard/static:latest -FROM golang:1.22.0-alpine3.18 AS health-probe-builder +FROM golang:1.22.1-alpine3.18 AS health-probe-builder WORKDIR /go/src/app RUN apk update && apk add --no-cache git RUN git clone https://github.com/grpc-ecosystem/grpc-health-probe.git