Skip to content

Commit e77301b

Browse files
authored
Merge pull request #290 from paketo-buildpacks/update/pipeline
Bump pipeline from 1.45.0 to 1.46.1
2 parents 8237477 + 47f79ed commit e77301b

7 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/pipeline-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.45.0
1+
1.46.1

.github/workflows/pb-create-package.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
1717
registry: docker.io
1818
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
19-
- uses: actions/setup-go@v5
19+
- uses: actions/setup-go@v6
2020
with:
2121
go-version: "1.26"
2222
- name: Install create-package
@@ -26,13 +26,13 @@ jobs:
2626
set -euo pipefail
2727
2828
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest
29-
- uses: buildpacks/github-actions/setup-tools@v5.11.0
29+
- uses: buildpacks/github-actions/setup-tools@v5.12.0
3030
with:
3131
crane-version: 0.20.3
3232
yj-version: 5.1.0
33-
- uses: buildpacks/github-actions/setup-pack@v5.11.0
33+
- uses: buildpacks/github-actions/setup-pack@v5.12.0
3434
with:
35-
pack-version: 0.40.0
35+
pack-version: 0.40.2
3636
- name: Enable pack Experimental
3737
run: |
3838
#!/usr/bin/env bash
@@ -41,9 +41,9 @@ jobs:
4141
4242
echo "Enabling pack experimental features"
4343
pack config experimental true
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v6
4545
- if: ${{ false }}
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }}
4949
path: |-
@@ -203,7 +203,7 @@ jobs:
203203
DIGEST: ${{ steps.package.outputs.digest }}
204204
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
205205
- if: ${{ true }}
206-
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.11.0
206+
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.12.0
207207
with:
208208
address: docker.io/paketobuildpacks/procfile@${{ steps.package.outputs.digest }}
209209
id: paketo-buildpacks/procfile

.github/workflows/pb-synchronize-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on:
1212
- ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- uses: micnncim/action-label-syncer@v1
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}

.github/workflows/pb-tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on:
1616
- ubuntu-latest
1717
steps:
18-
- uses: actions/setup-go@v5
18+
- uses: actions/setup-go@v6
1919
with:
2020
go-version: "1.26"
2121
- name: Install create-package
@@ -25,9 +25,9 @@ jobs:
2525
set -euo pipefail
2626
2727
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest
28-
- uses: buildpacks/github-actions/setup-pack@v5.11.0
28+
- uses: buildpacks/github-actions/setup-pack@v5.12.0
2929
with:
30-
pack-version: 0.40.0
30+
pack-version: 0.40.2
3131
- name: Enable pack Experimental
3232
run: |
3333
#!/usr/bin/env bash
@@ -36,8 +36,8 @@ jobs:
3636
3737
echo "Enabling pack experimental features"
3838
pack config experimental true
39-
- uses: actions/checkout@v4
40-
- uses: actions/cache@v4
39+
- uses: actions/checkout@v6
40+
- uses: actions/cache@v5
4141
with:
4242
key: ${{ runner.os }}-go-${{ hashFiles('**/buildpack.toml', '**/package.toml') }}
4343
path: |-
@@ -176,13 +176,13 @@ jobs:
176176
runs-on:
177177
- ubuntu-latest
178178
steps:
179-
- uses: actions/checkout@v4
180-
- uses: actions/cache@v4
179+
- uses: actions/checkout@v6
180+
- uses: actions/cache@v5
181181
with:
182182
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
183183
path: ${{ env.HOME }}/go/pkg/mod
184184
restore-keys: ${{ runner.os }}-go-
185-
- uses: actions/setup-go@v5
185+
- uses: actions/setup-go@v6
186186
with:
187187
go-version: "1.26"
188188
- name: Install richgo

.github/workflows/pb-update-draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: release-drafter/release-drafter@v5
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Update draft release with buildpack information
1818
uses: docker://ghcr.io/paketo-buildpacks/actions/draft-release:main
1919
with:

.github/workflows/pb-update-go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on:
1010
- ubuntu-latest
1111
steps:
12-
- uses: actions/setup-go@v5
12+
- uses: actions/setup-go@v6
1313
with:
1414
go-version: "1.26"
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Update Go Version & Modules
1717
id: update-go
1818
run: |
@@ -50,7 +50,7 @@ jobs:
5050
echo "commit-semver=${COMMIT_SEMVER}" >> "$GITHUB_OUTPUT"
5151
env:
5252
GO_VERSION: "1.26"
53-
- uses: peter-evans/create-pull-request@v6
53+
- uses: peter-evans/create-pull-request@v8
5454
with:
5555
author: ${{ secrets.JAVA_GITHUB_USERNAME }} <${{ secrets.JAVA_GITHUB_USERNAME }}@users.noreply.github.com>
5656
body: |-

.github/workflows/pb-update-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on:
1515
- ubuntu-latest
1616
steps:
17-
- uses: actions/setup-go@v5
17+
- uses: actions/setup-go@v6
1818
with:
1919
go-version: "1.26"
2020
- name: Install octo
@@ -24,7 +24,7 @@ jobs:
2424
set -euo pipefail
2525
2626
go install -ldflags="-s -w" github.com/paketo-buildpacks/pipeline-builder/cmd/octo@latest
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
- name: Update Pipeline
2929
id: pipeline
3030
run: |
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
DESCRIPTOR: .github/pipeline-descriptor.yml
7373
GITHUB_TOKEN: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
74-
- uses: peter-evans/create-pull-request@v6
74+
- uses: peter-evans/create-pull-request@v8
7575
with:
7676
author: ${{ secrets.JAVA_GITHUB_USERNAME }} <${{ secrets.JAVA_GITHUB_USERNAME }}@users.noreply.github.com>
7777
body: |-

0 commit comments

Comments
 (0)