From 9ca4614eaa2e8934b2d2027e954b5744380bd409 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 23:18:03 +0000 Subject: [PATCH] build(deps): bump the docker group with 3 updates Bumps the docker group with 3 updates: ubuntu, golang and distroless/base-debian12. Updates `ubuntu` from `562456a` to `3f85b7c` Updates `golang` from 1.22.2-bookworm to 1.22.3-bookworm Updates `distroless/base-debian12` from `c7852ef` to `fe3521b` --- updated-dependencies: - dependency-name: ubuntu dependency-type: direct:production dependency-group: docker - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker - dependency-name: distroless/base-debian12 dependency-type: direct:production dependency-group: docker ... Signed-off-by: dependabot[bot] --- pomerium-datasource-ip2location.dockerfile | 6 +++--- pomerium-datasource.dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pomerium-datasource-ip2location.dockerfile b/pomerium-datasource-ip2location.dockerfile index 8833a79..9cb181c 100644 --- a/pomerium-datasource-ip2location.dockerfile +++ b/pomerium-datasource-ip2location.dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest@sha256:562456a05a0dbd62a671c1854868862a4687bf979a96d48ae8e766642cd911e8 as curl +FROM ubuntu:latest@sha256:3f85b7caad41a95462cf5b787d8a04604c8262cdcdf9a472b8c52ef83375fe15 as curl RUN apt-get update && apt-get install -y curl @@ -9,7 +9,7 @@ RUN --mount=type=secret,id=download_token \ -o /download/IP2LOCATION-LITE-DB1.CSV.ZIP \ "https://www.ip2location.com/download/?token=${DOWNLOAD_TOKEN}&file=DB1LITECSV" -FROM golang:1.22.2-bookworm@sha256:d0902bacefdde1cf45528c098d14e55d78c107def8a22d148eabd71582d7a99f as build +FROM golang:1.22.3-bookworm@sha256:5c56bd47228dd572d8a82971cf1f946cd8bb1862a8ec6dc9f3d387cc94136976 as build WORKDIR /build @@ -23,7 +23,7 @@ COPY ./internal/ ./internal/ COPY ./pkg/ ./pkg/ RUN make build -FROM gcr.io/distroless/base-debian12:debug@sha256:c7852efc0ad9c72ee0327e9bed383fe121d3e43eb58852d1df964bb963929dab +FROM gcr.io/distroless/base-debian12:debug@sha256:fe3521b45c4985199f810f7db472de6cd6164799ed13605db1d699011e860c23 COPY --from=build /build/bin/* /bin/ COPY --from=curl /download/IP2LOCATION-LITE-DB1.CSV.ZIP /usr/share/IP2LOCATION-LITE-DB1.CSV.ZIP diff --git a/pomerium-datasource.dockerfile b/pomerium-datasource.dockerfile index 6eb7bfe..9812474 100644 --- a/pomerium-datasource.dockerfile +++ b/pomerium-datasource.dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2-bookworm@sha256:d0902bacefdde1cf45528c098d14e55d78c107def8a22d148eabd71582d7a99f as build +FROM golang:1.22.3-bookworm@sha256:5c56bd47228dd572d8a82971cf1f946cd8bb1862a8ec6dc9f3d387cc94136976 as build WORKDIR /build @@ -12,7 +12,7 @@ COPY ./internal/ ./internal/ COPY ./pkg/ ./pkg/ RUN make build -FROM gcr.io/distroless/base-debian12:debug@sha256:c7852efc0ad9c72ee0327e9bed383fe121d3e43eb58852d1df964bb963929dab +FROM gcr.io/distroless/base-debian12:debug@sha256:fe3521b45c4985199f810f7db472de6cd6164799ed13605db1d699011e860c23 COPY --from=build /build/bin/* /bin/