File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- 1.41.2
1+ 1.42.0
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
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>
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2-
32set -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
88if [ " ${STRIP:- false} " != " false" ]; then
9- strip bin/main bin/main.exe
9+ strip linux/amd64/ bin/main linux/arm64/ bin/main
1010fi
1111
1212if [ " ${COMPRESS:- none} " != " none" ]; then
13- $COMPRESS bin/main bin/main.exe
13+ $COMPRESS linux/amd64/ bin/main linux/arm64/ bin/main
1414fi
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
You can’t perform that action at this time.
0 commit comments