Skip to content

Commit 8927829

Browse files
janisar007github-actions[bot]
authored andcommitted
Bump pipeline from 1.41.2 to 1.42.0
Bumps pipeline from 1.41.2 to 1.42.0. Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 85c01e8 commit 8927829

6 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/pipeline-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.41.2
1+
1.42.0

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ jobs:
1818
username: ${{ secrets.INITIALIZ_BUILDPACKS_DOCKERHUB_USERNAME }}
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: "1.23"
21+
go-version: "1.24"
2222
- name: Install create-package
2323
run: |
2424
#!/usr/bin/env bash
2525
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.7.2
29+
- uses: buildpacks/github-actions/setup-tools@v5.8.9
3030
with:
31-
crane-version: 0.19.1
31+
crane-version: 0.20.3
3232
yj-version: 5.1.0
33-
- uses: buildpacks/github-actions/setup-pack@v5.7.2
33+
- uses: buildpacks/github-actions/setup-pack@v5.8.9
3434
with:
35-
pack-version: 0.36.0
35+
pack-version: 0.36.4
3636
- name: Enable pack Experimental
3737
if: ${{ false }}
3838
run: |
@@ -201,7 +201,7 @@ jobs:
201201
DIGEST: ${{ steps.package.outputs.digest }}
202202
GITHUB_TOKEN: ${{ secrets.PAT }}
203203
- if: ${{ true }}
204-
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.7.2
204+
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:5.8.9
205205
with:
206206
address: docker.io/initializbuildpacks/procfile@${{ steps.package.outputs.digest }}
207207
id: initializ-buildpacks/procfile

.github/workflows/pb-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ jobs:
2424
username: ${{ secrets.INITIALIZ_BUILDPACKS_DOCKERHUB_USERNAME }}
2525
- uses: actions/setup-go@v5
2626
with:
27-
go-version: "1.23"
27+
go-version: "1.24"
2828
- name: Install create-package
2929
run: |
3030
#!/usr/bin/env bash
3131
3232
set -euo pipefail
3333
3434
go install -ldflags="-s -w" github.com/paketo-buildpacks/libpak/cmd/create-package@latest
35-
- uses: buildpacks/github-actions/setup-pack@v5.7.2
35+
- uses: buildpacks/github-actions/setup-pack@v5.8.9
3636
with:
37-
pack-version: 0.34.2
37+
pack-version: 0.36.4
3838
- name: Enable pack Experimental
3939
if: ${{ false }}
4040
run: |
@@ -189,7 +189,7 @@ jobs:
189189
restore-keys: ${{ runner.os }}-go-
190190
- uses: actions/setup-go@v5
191191
with:
192-
go-version: "1.23"
192+
go-version: "1.24"
193193
- name: Install richgo
194194
run: |
195195
#!/usr/bin/env bash

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/setup-go@v5
1313
with:
14-
go-version: "1.23"
14+
go-version: "1.24"
1515
- uses: actions/checkout@v4
1616
- name: Update Go Version & Modules
1717
id: update-go
@@ -49,7 +49,7 @@ jobs:
4949
echo "commit-body=${COMMIT_BODY}" >> "$GITHUB_OUTPUT"
5050
echo "commit-semver=${COMMIT_SEMVER}" >> "$GITHUB_OUTPUT"
5151
env:
52-
GO_VERSION: "1.23"
52+
GO_VERSION: "1.24"
5353
- uses: peter-evans/create-pull-request@v6
5454
with:
5555
author: ${{ secrets.JAVA_GITHUB_USERNAME }} <${{ secrets.JAVA_GITHUB_USERNAME }}@users.noreply.github.com>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: "1.23"
19+
go-version: "1.24"
2020
- name: Install octo
2121
run: |
2222
#!/usr/bin/env bash

scripts/build.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
#!/usr/bin/env bash
2-
32
set -euo pipefail
43

5-
GOOS="linux" go build -ldflags='-s -w' -o bin/main github.com/initializ-buildpacks/procfile/v5/cmd/main
6-
GOOS="windows" GOARCH="amd64" go build -ldflags='-s -w' -o bin/main.exe github.com/initializ-buildpacks/procfile/v5/cmd/main
4+
GOMOD=$(head -1 go.mod | awk '{print $2}')
5+
GOOS="linux" GOARCH="amd64" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main"
6+
GOOS="linux" GOARCH="arm64" go build -ldflags='-s -w' -o linux/arm64/bin/main "$GOMOD/cmd/main"
77

88
if [ "${STRIP:-false}" != "false" ]; then
9-
strip bin/main bin/main.exe
9+
strip linux/amd64/bin/main linux/arm64/bin/main
1010
fi
1111

1212
if [ "${COMPRESS:-none}" != "none" ]; then
13-
$COMPRESS bin/main bin/main.exe
13+
$COMPRESS linux/amd64/bin/main linux/arm64/bin/main
1414
fi
1515

16-
ln -fs main bin/build
17-
ln -fs main bin/detect
18-
ln -fs main.exe bin/build.exe
19-
ln -fs main.exe bin/detect.exe
16+
ln -fs main linux/amd64/bin/build
17+
ln -fs main linux/arm64/bin/build
18+
ln -fs main linux/amd64/bin/detect
19+
ln -fs main linux/arm64/bin/detect

0 commit comments

Comments
 (0)