Skip to content

Commit

Permalink
Update pack version to 0.33.1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 688843125
Change-Id: I7ce5a2a6f3e07a61e660121c7fe9c58a0ca3c9d2
  • Loading branch information
nishi1401 authored and copybara-github committed Oct 23, 2024
1 parent ca875d1 commit 37df452
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/checktools/checktools.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
var (
// LINT.IfChange(minPackVersion)
// minPackVersion is the minimum required version of pack.
minPackVersion = semver.MustParse("0.33.1")
minPackVersion = semver.MustParse("0.23.0")
// LINT.ThenChange(//depot/google3/apphosting/g3doc/runtimes/tutorials/buildpack-tests-debug.md)
)

Expand Down
2 changes: 1 addition & 1 deletion kokoro/scripts/presubmit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if [[ ! -v FILTER ]]; then
exit 1
fi

readonly PACK_VERSION="0.33.1"
readonly PACK_VERSION="0.23.0"

temp="$(mktemp -d)"
CURL_OPTS="--retry 5 -fsSL"
Expand Down
2 changes: 1 addition & 1 deletion tools/cloudbuild/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
FROM gcr.io/cloud-builders/bazel

# Binaries must be in /usr/bin to be visible to Bazel.
ARG PACK_VERSION=0.33.1
ARG PACK_VERSION=0.23.0
RUN curl -fsSL https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64 -o /usr/bin/container-structure-test && chmod +x /usr/bin/container-structure-test
RUN curl -fsSL https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz | tar xz -C /usr/bin
RUN curl -fsSL https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -o /usr/bin/jq && chmod +x /usr/bin/jq
Expand Down

0 comments on commit 37df452

Please sign in to comment.