-
Notifications
You must be signed in to change notification settings - Fork 0
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.34.0 to 1.40.0. Signed-off-by: GitHub <[email protected]>
- Loading branch information
1 parent
1b8bb31
commit 4939f87
Showing
10 changed files
with
132 additions
and
159 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @initializ-buildpacks/utilities-maintainers | ||
* @paketo-buildpacks/utilities-maintainers |
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.34.0 | ||
1.40.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 |
---|---|---|
|
@@ -9,61 +9,37 @@ jobs: | |
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- name: Docker login gcr.io | ||
if: ${{ (github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork) && (github.actor != 'dependabot[bot]') }} | ||
uses: docker/login-action@v3 | ||
with: | ||
password: ${{ secrets.GCR_PUSH_BOT_JSON_KEY }} | ||
registry: gcr.io | ||
username: _json_key | ||
- name: Docker login docker.io | ||
if: ${{ (github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork) && (github.actor != 'dependabot[bot]') }} | ||
uses: docker/login-action@v2 | ||
uses: docker/login-action@v3 | ||
with: | ||
password: ${{ secrets.INITIALIZ_BUILDPACKS_DOCKERHUB_PASSWORD }} | ||
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }} | ||
registry: docker.io | ||
username: ${{ secrets.INITIALIZ_BUILDPACKS_DOCKERHUB_USERNAME }} | ||
- uses: actions/setup-go@v4 | ||
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "stable" | ||
go-version: "1.22" | ||
- name: Install create-package | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest | ||
- name: Install crane | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "Installing crane ${CRANE_VERSION}" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl \ | ||
--show-error \ | ||
--silent \ | ||
--location \ | ||
"https://github.com/google/go-containerregistry/releases/download/v${CRANE_VERSION}/go-containerregistry_Linux_x86_64.tar.gz" \ | ||
| tar -C "${HOME}/bin" -xz crane | ||
env: | ||
CRANE_VERSION: 0.8.0 | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "Installing pack ${PACK_VERSION}" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl \ | ||
--location \ | ||
--show-error \ | ||
--silent \ | ||
"https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz" \ | ||
| tar -C "${HOME}"/bin -xz pack | ||
env: | ||
PACK_VERSION: 0.34.2 | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
crane-version: 0.19.1 | ||
yj-version: 5.1.0 | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
pack-version: 0.34.2 | ||
- name: Enable pack Experimental | ||
if: ${{ false }} | ||
run: | | ||
|
@@ -75,9 +51,9 @@ jobs: | |
mkdir -p "${HOME}"/.pack | ||
echo "experimental = true" >> "${HOME}"/.pack/config.toml | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- if: ${{ false }} | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }} | ||
path: |- | ||
|
@@ -91,8 +67,8 @@ jobs: | |
set -euo pipefail | ||
if [ -z "${GITHUB_REF+set}" ]; then | ||
echo "GITHUB_REF set to [${GITHUB_REF-<unset>}], but should never be empty or unset" | ||
if [[ ${GITHUB_REF:-} != "refs/"* ]]; then | ||
echo "GITHUB_REF set to [${GITHUB_REF:-}], but that is unexpected. It should start with 'refs/*'" | ||
exit 255 | ||
fi | ||
|
@@ -130,21 +106,23 @@ jobs: | |
if [[ "${INCLUDE_DEPENDENCIES}" == "true" ]]; then | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--cache-location "${HOME}"/carton-cache \ | ||
--destination "${HOME}"/buildpack \ | ||
--include-dependencies \ | ||
--version "${VERSION}" | ||
else | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--destination "${HOME}"/buildpack \ | ||
--version "${VERSION}" | ||
fi | ||
PACKAGE_FILE=${SOURCE_PATH:-.}/package.toml | ||
[[ -e ${PACKAGE_FILE} ]] && cp ${PACKAGE_FILE} "${HOME}"/package.toml | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}"/buildpack "${OS}" >> "${HOME}"/package.toml | ||
PACKAGE_FILE="${SOURCE_PATH:-.}/package.toml" | ||
if [ -f "${PACKAGE_FILE}" ]; then | ||
cp "${PACKAGE_FILE}" "${HOME}/buildpack/package.toml" | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}/buildpack" "${OS}" >> "${HOME}/buildpack/package.toml" | ||
fi | ||
env: | ||
INCLUDE_DEPENDENCIES: "false" | ||
OS: linux | ||
|
@@ -157,15 +135,23 @@ jobs: | |
set -euo pipefail | ||
COMPILED_BUILDPACK="${HOME}/buildpack" | ||
# create-package puts the buildpack here, we need to run from that directory | ||
# for component buildpacks so that pack doesn't need a package.toml | ||
cd "${COMPILED_BUILDPACK}" | ||
CONFIG="" | ||
if [ -f "${COMPILED_BUILDPACK}/package.toml" ]; then | ||
CONFIG="--config ${COMPILED_BUILDPACK}/package.toml" | ||
fi | ||
PACKAGE_LIST=($PACKAGES) | ||
# Extract first repo (Docker Hub) as the main to package & register | ||
PACKAGE=${PACKAGE_LIST[0]} | ||
if [[ "${PUBLISH:-x}" == "true" ]]; then | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--publish | ||
if [[ -n ${VERSION_MINOR:-} && -n ${VERSION_MAJOR:-} ]]; then | ||
|
@@ -189,13 +175,12 @@ jobs: | |
done | ||
else | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
--format "${FORMAT}" | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish") | ||
fi | ||
env: | ||
PACKAGES: docker.io/initializbuildpacks/watchexec docker.io/initializbuildpacks/watchexec | ||
PACKAGES: docker.io/paketobuildpacks/watchexec gcr.io/paketo-buildpacks/watchexec | ||
PUBLISH: "true" | ||
VERSION: ${{ steps.version.outputs.version }} | ||
VERSION_MAJOR: ${{ steps.version.outputs.version-major }} | ||
|
@@ -221,11 +206,11 @@ jobs: | |
--field "body=${RELEASE_BODY//<!-- DIGEST PLACEHOLDER -->/\`${DIGEST}\`}" | ||
env: | ||
DIGEST: ${{ steps.package.outputs.digest }} | ||
GITHUB_TOKEN: ${{ secrets.PAT }} | ||
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} | ||
- if: ${{ true }} | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:4.0.1 | ||
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.7.2 | ||
with: | ||
address: docker.io/initializbuildpacks/watchexec@${{ steps.package.outputs.digest }} | ||
address: docker.io/paketobuildpacks/watchexec@${{ steps.package.outputs.digest }} | ||
id: initializ-buildpacks/watchexec | ||
token: ${{ secrets.PAT }} | ||
token: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }} | ||
version: ${{ steps.version.outputs.version }} |
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
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
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 |
---|---|---|
|
@@ -15,35 +15,19 @@ jobs: | |
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "stable" | ||
go-version: "1.22" | ||
- name: Install create-package | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest | ||
- name: Install pack | ||
run: | | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
echo "Installing pack ${PACK_VERSION}" | ||
mkdir -p "${HOME}"/bin | ||
echo "${HOME}/bin" >> "${GITHUB_PATH}" | ||
curl \ | ||
--location \ | ||
--show-error \ | ||
--silent \ | ||
"https://github.com/buildpacks/pack/releases/download/v${PACK_VERSION}/pack-v${PACK_VERSION}-linux.tgz" \ | ||
| tar -C "${HOME}"/bin -xz pack | ||
env: | ||
PACK_VERSION: 0.34.2 | ||
- uses: buildpacks/github-actions/[email protected] | ||
with: | ||
pack-version: 0.34.2 | ||
- name: Enable pack Experimental | ||
if: ${{ false }} | ||
run: | | ||
|
@@ -55,8 +39,8 @@ jobs: | |
mkdir -p "${HOME}"/.pack | ||
echo "experimental = true" >> "${HOME}"/.pack/config.toml | ||
- uses: actions/checkout@v3 | ||
- uses: actions/cache@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v4 | ||
with: | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }} | ||
path: |- | ||
|
@@ -70,8 +54,8 @@ jobs: | |
set -euo pipefail | ||
if [ -z "${GITHUB_REF+set}" ]; then | ||
echo "GITHUB_REF set to [${GITHUB_REF-<unset>}], but should never be empty or unset" | ||
if [[ ${GITHUB_REF:-} != "refs/"* ]]; then | ||
echo "GITHUB_REF set to [${GITHUB_REF:-}], but that is unexpected. It should start with 'refs/*'" | ||
exit 255 | ||
fi | ||
|
@@ -109,21 +93,23 @@ jobs: | |
if [[ "${INCLUDE_DEPENDENCIES}" == "true" ]]; then | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--cache-location "${HOME}"/carton-cache \ | ||
--destination "${HOME}"/buildpack \ | ||
--include-dependencies \ | ||
--version "${VERSION}" | ||
else | ||
create-package \ | ||
--source ${SOURCE_PATH:-.} \ | ||
--source "${SOURCE_PATH:-.}" \ | ||
--destination "${HOME}"/buildpack \ | ||
--version "${VERSION}" | ||
fi | ||
PACKAGE_FILE=${SOURCE_PATH:-.}/package.toml | ||
[[ -e ${PACKAGE_FILE} ]] && cp ${PACKAGE_FILE} "${HOME}"/package.toml | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}"/buildpack "${OS}" >> "${HOME}"/package.toml | ||
PACKAGE_FILE="${SOURCE_PATH:-.}/package.toml" | ||
if [ -f "${PACKAGE_FILE}" ]; then | ||
cp "${PACKAGE_FILE}" "${HOME}/buildpack/package.toml" | ||
printf '[buildpack]\nuri = "%s"\n\n[platform]\nos = "%s"\n' "${HOME}/buildpack" "${OS}" >> "${HOME}/buildpack/package.toml" | ||
fi | ||
env: | ||
INCLUDE_DEPENDENCIES: "true" | ||
OS: linux | ||
|
@@ -134,15 +120,23 @@ jobs: | |
set -euo pipefail | ||
COMPILED_BUILDPACK="${HOME}/buildpack" | ||
# create-package puts the buildpack here, we need to run from that directory | ||
# for component buildpacks so that pack doesn't need a package.toml | ||
cd "${COMPILED_BUILDPACK}" | ||
CONFIG="" | ||
if [ -f "${COMPILED_BUILDPACK}/package.toml" ]; then | ||
CONFIG="--config ${COMPILED_BUILDPACK}/package.toml" | ||
fi | ||
PACKAGE_LIST=($PACKAGES) | ||
# Extract first repo (Docker Hub) as the main to package & register | ||
PACKAGE=${PACKAGE_LIST[0]} | ||
if [[ "${PUBLISH:-x}" == "true" ]]; then | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--publish | ||
if [[ -n ${VERSION_MINOR:-} && -n ${VERSION_MAJOR:-} ]]; then | ||
|
@@ -166,29 +160,29 @@ jobs: | |
done | ||
else | ||
pack buildpack package \ | ||
"${PACKAGE}:${VERSION}" \ | ||
--config "${HOME}"/package.toml \ | ||
--format "${FORMAT}" | ||
pack -v buildpack package \ | ||
"${PACKAGE}:${VERSION}" ${CONFIG} \ | ||
--format "${FORMAT}" $([ -n "$TTL_SH_PUBLISH" ] && [ "$TTL_SH_PUBLISH" = "true" ] && echo "--publish") | ||
fi | ||
env: | ||
FORMAT: image | ||
PACKAGES: test | ||
TTL_SH_PUBLISH: "false" | ||
VERSION: ${{ steps.version.outputs.version }} | ||
unit: | ||
name: Unit Test | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/cache@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v4 | ||
with: | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
path: ${{ env.HOME }}/go/pkg/mod | ||
restore-keys: ${{ runner.os }}-go- | ||
- uses: actions/setup-go@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "stable" | ||
go-version: "1.22" | ||
- name: Install richgo | ||
run: | | ||
#!/usr/bin/env bash | ||
|
Oops, something went wrong.