Skip to content

Commit 1e40f53

Browse files
authored
Merge pull request #245 from paketo-buildpacks/update/pipeline
Bump pipeline from 1.40.0 to 1.41.2
2 parents c1005d4 + 88f9511 commit 1e40f53

6 files changed

+9
-9
lines changed

.github/pipeline-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.40.0
1+
1.41.2

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
2626
- uses: actions/setup-go@v5
2727
with:
28-
go-version: "1.22"
28+
go-version: "1.23"
2929
- name: Install create-package
3030
run: |
3131
#!/usr/bin/env bash

.github/workflows/pb-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: "1.22"
20+
go-version: "1.23"
2121
- name: Install create-package
2222
run: |
2323
#!/usr/bin/env bash
@@ -182,7 +182,7 @@ jobs:
182182
restore-keys: ${{ runner.os }}-go-
183183
- uses: actions/setup-go@v5
184184
with:
185-
go-version: "1.22"
185+
go-version: "1.23"
186186
- name: Install richgo
187187
run: |
188188
#!/usr/bin/env bash

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

+1-1
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.22"
14+
go-version: "1.23"
1515
- name: Install update-buildpack-dependency
1616
run: |
1717
#!/usr/bin/env bash

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

+3-3
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.22"
14+
go-version: "1.23"
1515
- uses: actions/checkout@v4
1616
- name: Update Go Version & Modules
1717
id: update-go
@@ -25,7 +25,7 @@ jobs:
2525
exit 1
2626
fi
2727
28-
OLD_GO_VERSION=$(grep -P '^go \d\.\d+' go.mod | cut -d ' ' -f 2)
28+
OLD_GO_VERSION=$(grep -P '^go \d\.\d+' go.mod | cut -d ' ' -f 2 | cut -d '.' -f 1-2)
2929
3030
go mod edit -go="$GO_VERSION"
3131
go mod tidy
@@ -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.22"
52+
GO_VERSION: "1.23"
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

+1-1
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.22"
19+
go-version: "1.23"
2020
- name: Install octo
2121
run: |
2222
#!/usr/bin/env bash

0 commit comments

Comments
 (0)