-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps pipeline from 1.37.5 to 1.39.0. Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d301496
commit 5604756
Showing
3 changed files
with
31 additions
and
9 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 |
---|---|---|
@@ -1 +1 @@ | ||
1.37.5 | ||
1.39.0 |
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 |
---|---|---|
|
@@ -26,13 +26,24 @@ jobs: | |
set -euo pipefail | ||
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest | ||
- uses: buildpacks/github-actions/setup-tools@v5.7.2 | ||
- uses: buildpacks/github-actions/setup-tools@v5.6.0 | ||
with: | ||
crane-version: 0.19.1 | ||
yj-version: 5.1.0 | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
pack-version: 0.34.2 | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
# this is coming from a copy of https://github.com/buildpacks/pack/actions/runs/8118576298 stored on box | ||
# TODO to revisit when the official one is out | ||
set -euo pipefail | ||
echo "Installing pack experimental" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl -L "https://ent.box.com/shared/static/j4d1bfe9uk1sb0i7zjvci0md9xmy41u4" -o ${HOME}/bin/pack | ||
chmod +x "${HOME}"/bin/pack | ||
- name: Enable pack Experimental | ||
if: ${{ false }} | ||
run: | | ||
|
@@ -201,7 +212,7 @@ jobs: | |
DIGEST: ${{ steps.package.outputs.digest }} | ||
GITHUB_TOKEN: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }} | ||
- if: ${{ true }} | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.7.2 | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.6.0 | ||
with: | ||
address: docker.io/buildpacksio/profile@${{ steps.package.outputs.digest }} | ||
id: buildpacksio/profile | ||
|
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 |
---|---|---|
|
@@ -32,9 +32,20 @@ jobs: | |
set -euo pipefail | ||
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
pack-version: 0.34.2 | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
# this is coming from a copy of https://github.com/buildpacks/pack/actions/runs/8118576298 stored on box | ||
# TODO to revisit when the official one is out | ||
set -euo pipefail | ||
echo "Installing pack experimental" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl -L "https://ent.box.com/shared/static/j4d1bfe9uk1sb0i7zjvci0md9xmy41u4" -o ${HOME}/bin/pack | ||
chmod +x "${HOME}"/bin/pack | ||
- name: Enable pack Experimental | ||
if: ${{ false }} | ||
run: | | ||
|