Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/pipeline-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.45.0
1.46.1
14 changes: 7 additions & 7 deletions .github/workflows/pb-create-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install create-package
Expand All @@ -26,13 +26,13 @@ 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.11.0
- uses: buildpacks/github-actions/setup-tools@v5.12.0
with:
crane-version: 0.20.3
yj-version: 5.1.0
- uses: buildpacks/github-actions/setup-pack@v5.11.0
- uses: buildpacks/github-actions/setup-pack@v5.12.0
with:
pack-version: 0.40.0
pack-version: 0.40.2
- name: Enable pack Experimental
run: |
#!/usr/bin/env bash
Expand All @@ -41,9 +41,9 @@ jobs:

echo "Enabling pack experimental features"
pack config experimental true
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- if: ${{ false }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }}
path: |-
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
DIGEST: ${{ steps.package.outputs.digest }}
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
- if: ${{ true }}
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.11.0
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.12.0
with:
address: docker.io/paketocommunity/rust@${{ steps.package.outputs.digest }}
id: paketo-community/rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pb-synchronize-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
10 changes: 5 additions & 5 deletions .github/workflows/pb-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install create-package
Expand All @@ -25,9 +25,9 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest
- uses: buildpacks/github-actions/setup-pack@v5.11.0
- uses: buildpacks/github-actions/setup-pack@v5.12.0
with:
pack-version: 0.40.0
pack-version: 0.40.2
- name: Enable pack Experimental
run: |
#!/usr/bin/env bash
Expand All @@ -36,8 +36,8 @@ jobs:

echo "Enabling pack experimental features"
pack config experimental true
- uses: actions/checkout@v4
- uses: actions/cache@v4
- uses: actions/checkout@v6
- uses: actions/cache@v5
with:
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }}
path: |-
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pb-update-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install update-package-dependency
Expand All @@ -26,11 +26,11 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/update-package-dependency@latest
- uses: buildpacks/github-actions/setup-tools@v5.11.0
- uses: buildpacks/github-actions/setup-tools@v5.12.0
with:
crane-version: 0.20.3
yj-version: 5.1.0
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update Package Dependency
id: package
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
env:
BP_DEPENDENCY: docker.io/paketo-community/cargo
DEPENDENCY: docker.io/paketocommunity/cargo
- uses: peter-evans/create-pull-request@v6
- uses: peter-evans/create-pull-request@v8
with:
author: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} <${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}@users.noreply.github.com>
body: Bumps [`docker.io/paketocommunity/cargo`](https://docker.io/paketocommunity/cargo) from [`${{ steps.package.outputs.old-version }}`](https://docker.io/paketocommunity/cargo:${{ steps.package.outputs.old-version }}) to [`${{ steps.package.outputs.new-version }}`](https://docker.io/paketocommunity/cargo:${{ steps.package.outputs.new-version }}).
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pb-update-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update draft release with buildpack information
uses: docker://ghcr.io/paketo-buildpacks/actions/draft-release:main
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pb-update-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on:
- ubuntu-latest
steps:
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install octo
Expand All @@ -24,7 +24,7 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/pipeline-builder/cmd/octo@latest
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update Pipeline
id: pipeline
run: |
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
env:
DESCRIPTOR: .github/pipeline-descriptor.yml
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
- uses: peter-evans/create-pull-request@v6
- uses: peter-evans/create-pull-request@v8
with:
author: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} <${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}@users.noreply.github.com>
body: |-
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pb-update-procfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install update-package-dependency
Expand All @@ -26,11 +26,11 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/update-package-dependency@latest
- uses: buildpacks/github-actions/setup-tools@v5.11.0
- uses: buildpacks/github-actions/setup-tools@v5.12.0
with:
crane-version: 0.20.3
yj-version: 5.1.0
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update Package Dependency
id: package
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
env:
BP_DEPENDENCY: docker.io/paketo-buildpacks/procfile
DEPENDENCY: docker.io/paketobuildpacks/procfile
- uses: peter-evans/create-pull-request@v6
- uses: peter-evans/create-pull-request@v8
with:
author: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} <${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}@users.noreply.github.com>
body: Bumps [`docker.io/paketobuildpacks/procfile`](https://docker.io/paketobuildpacks/procfile) from [`${{ steps.package.outputs.old-version }}`](https://docker.io/paketobuildpacks/procfile:${{ steps.package.outputs.old-version }}) to [`${{ steps.package.outputs.new-version }}`](https://docker.io/paketobuildpacks/procfile:${{ steps.package.outputs.new-version }}).
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pb-update-rust-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install update-package-dependency
Expand All @@ -26,11 +26,11 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/update-package-dependency@latest
- uses: buildpacks/github-actions/setup-tools@v5.11.0
- uses: buildpacks/github-actions/setup-tools@v5.12.0
with:
crane-version: 0.20.3
yj-version: 5.1.0
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update Package Dependency
id: package
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
env:
BP_DEPENDENCY: docker.io/paketo-community/rust-dist
DEPENDENCY: docker.io/paketocommunity/rust-dist
- uses: peter-evans/create-pull-request@v6
- uses: peter-evans/create-pull-request@v8
with:
author: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} <${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}@users.noreply.github.com>
body: Bumps [`docker.io/paketocommunity/rust-dist`](https://docker.io/paketocommunity/rust-dist) from [`${{ steps.package.outputs.old-version }}`](https://docker.io/paketocommunity/rust-dist:${{ steps.package.outputs.old-version }}) to [`${{ steps.package.outputs.new-version }}`](https://docker.io/paketocommunity/rust-dist:${{ steps.package.outputs.new-version }}).
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pb-update-rustup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install update-package-dependency
Expand All @@ -26,11 +26,11 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/update-package-dependency@latest
- uses: buildpacks/github-actions/setup-tools@v5.11.0
- uses: buildpacks/github-actions/setup-tools@v5.12.0
with:
crane-version: 0.20.3
yj-version: 5.1.0
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update Package Dependency
id: package
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
env:
BP_DEPENDENCY: docker.io/paketo-community/rustup
DEPENDENCY: docker.io/paketocommunity/rustup
- uses: peter-evans/create-pull-request@v6
- uses: peter-evans/create-pull-request@v8
with:
author: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} <${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}@users.noreply.github.com>
body: Bumps [`docker.io/paketocommunity/rustup`](https://docker.io/paketocommunity/rustup) from [`${{ steps.package.outputs.old-version }}`](https://docker.io/paketocommunity/rustup:${{ steps.package.outputs.old-version }}) to [`${{ steps.package.outputs.new-version }}`](https://docker.io/paketocommunity/rustup:${{ steps.package.outputs.new-version }}).
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pb-update-syft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
registry: docker.io
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: "1.26"
- name: Install update-package-dependency
Expand All @@ -26,11 +26,11 @@ jobs:
set -euo pipefail

go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/update-package-dependency@latest
- uses: buildpacks/github-actions/setup-tools@v5.11.0
- uses: buildpacks/github-actions/setup-tools@v5.12.0
with:
crane-version: 0.20.3
yj-version: 5.1.0
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Update Package Dependency
id: package
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
env:
BP_DEPENDENCY: docker.io/paketo-buildpacks/syft
DEPENDENCY: docker.io/paketobuildpacks/syft
- uses: peter-evans/create-pull-request@v6
- uses: peter-evans/create-pull-request@v8
with:
author: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }} <${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}@users.noreply.github.com>
body: Bumps [`docker.io/paketobuildpacks/syft`](https://docker.io/paketobuildpacks/syft) from [`${{ steps.package.outputs.old-version }}`](https://docker.io/paketobuildpacks/syft:${{ steps.package.outputs.old-version }}) to [`${{ steps.package.outputs.new-version }}`](https://docker.io/paketobuildpacks/syft:${{ steps.package.outputs.new-version }}).
Expand Down
Loading