-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): bump golang from 1.23.4 to 1.23.5 in /hack
Bumps golang from 1.23.4 to 1.23.5. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
08b6799
commit 3312e31
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
# deps builds binaries in an isolated environment to avoid | ||
# funkiness in the hermetic build. | ||
FROM google-go.pkg.dev/golang:1.23.4@sha256:c419d4a81d5a735d9f480f8e848e07514e63ef2afed162abc571e85dd8cac882 AS deps | ||
FROM google-go.pkg.dev/golang:1.23.5@sha256:ae5399149210a73ea34a8cb1f4812947b72da9f1d8b5463abb92c63e6826e838 AS deps | ||
WORKDIR /workspace | ||
|
||
RUN go install github.com/bwplotka/[email protected] | ||
|
@@ -23,7 +23,7 @@ RUN bingo -v get # TODO(bwplotka): It takes 177s in docker container with colima | |
|
||
# hermetic is a lite copy of the repo resources used in building | ||
# testing in a hermetic, idempotent, and reproducable environment. | ||
FROM google-go.pkg.dev/golang:1.23.4@sha256:c419d4a81d5a735d9f480f8e848e07514e63ef2afed162abc571e85dd8cac882 AS hermetic | ||
FROM google-go.pkg.dev/golang:1.23.5@sha256:ae5399149210a73ea34a8cb1f4812947b72da9f1d8b5463abb92c63e6826e838 AS hermetic | ||
|
||
COPY --from=deps /go/bin /go/bin | ||
ARG RUNCMD='go fmt ./...' | ||
|
@@ -68,7 +68,7 @@ COPY --from=hermetic /workspace/e2e e2e | |
COPY --from=hermetic /workspace/vendor vendor.tmp | ||
|
||
## kindtest image for running tests against kind cluster in hermetic environment. | ||
FROM google-go.pkg.dev/golang:1.23.4@sha256:c419d4a81d5a735d9f480f8e848e07514e63ef2afed162abc571e85dd8cac882 AS buildbase | ||
FROM google-go.pkg.dev/golang:1.23.5@sha256:ae5399149210a73ea34a8cb1f4812947b72da9f1d8b5463abb92c63e6826e838 AS buildbase | ||
FROM docker:27.5-cli AS docker | ||
FROM debian:stable-slim AS kindtest | ||
|
||
|