Skip to content

Commit 723a8f4

Browse files
authored
Merge pull request #177 from buildpacks/update/pipeline
Bump pipeline from 1.29.0 to 1.32.0
2 parents 8890c9a + dc00d43 commit 723a8f4

File tree

7 files changed

+29
-20
lines changed

7 files changed

+29
-20
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @buildpacks/platform-maintainers @buildpacks/toc
1+
* @buildpacks/platform-maintainers @buildpacks/toc

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ updates:
44
directory: /
55
schedule:
66
interval: daily
7+
ignore:
8+
- dependency-name: github.com/onsi/gomega
79
labels:
810
- semver:patch
911
- type:dependency-upgrade

.github/pipeline-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.29.0
1+
1.32.0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on:
1313
- ubuntu-latest
1414
steps:
15-
- uses: mheap/github-action-required-labels@v2
15+
- uses: mheap/github-action-required-labels@v4
1616
with:
1717
count: 1
1818
labels: semver:major, semver:minor, semver:patch
@@ -22,7 +22,7 @@ jobs:
2222
runs-on:
2323
- ubuntu-latest
2424
steps:
25-
- uses: mheap/github-action-required-labels@v2
25+
- uses: mheap/github-action-required-labels@v4
2626
with:
2727
count: 1
2828
labels: type:bug, type:dependency-upgrade, type:documentation, type:enhancement, type:question, type:task

.github/workflows/pb-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Tests
22
"on":
3+
merge_group:
4+
types:
5+
- checks_requested
6+
branches:
7+
- main
38
pull_request: {}
49
push:
510
branches:
@@ -16,9 +21,9 @@ jobs:
1621
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
1722
path: ${{ env.HOME }}/go/pkg/mod
1823
restore-keys: ${{ runner.os }}-go-
19-
- uses: actions/setup-go@v3
24+
- uses: actions/setup-go@v4
2025
with:
21-
go-version: "1.18"
26+
go-version: "1.20"
2227
- name: Install richgo
2328
run: |
2429
#!/usr/bin/env bash

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: Update Go
22
"on":
33
schedule:
4-
- cron: 0 2 * * 1
4+
- cron: 26 2 * * 1
55
workflow_dispatch: {}
66
jobs:
77
update:
88
name: Update Go
99
runs-on:
1010
- ubuntu-latest
1111
steps:
12-
- uses: actions/setup-go@v3
12+
- uses: actions/setup-go@v4
1313
with:
14-
go-version: "1.19"
14+
go-version: "1.20"
1515
- uses: actions/checkout@v3
1616
- name: Update Go Version & Modules
1717
id: update-go
@@ -45,12 +45,12 @@ jobs:
4545
COMMIT_SEMVER="semver:minor"
4646
fi
4747
48-
echo "::set-output name=commit-title::${COMMIT_TITLE}"
49-
echo "::set-output name=commit-body::${COMMIT_BODY}"
50-
echo "::set-output name=commit-semver::${COMMIT_SEMVER}"
48+
echo "commit-title=${COMMIT_TITLE}" >> "$GITHUB_OUTPUT"
49+
echo "commit-body=${COMMIT_BODY}" >> "$GITHUB_OUTPUT"
50+
echo "commit-semver=${COMMIT_SEMVER}" >> "$GITHUB_OUTPUT"
5151
env:
52-
GO_VERSION: "1.19"
53-
- uses: peter-evans/create-pull-request@v4
52+
GO_VERSION: "1.20"
53+
- uses: peter-evans/create-pull-request@v5
5454
with:
5555
author: ${{ secrets.IMPLEMENTATION_GITHUB_USERNAME }} <${{ secrets.IMPLEMENTATION_GITHUB_USERNAME }}@users.noreply.github.com>
5656
body: |-

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on:
1515
- ubuntu-latest
1616
steps:
17-
- uses: actions/setup-go@v3
17+
- uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.18"
19+
go-version: "1.20"
2020
- name: Install octo
2121
run: |
2222
#!/usr/bin/env bash
@@ -57,13 +57,15 @@ jobs:
5757
git add .github/
5858
git checkout -- .
5959
60-
echo "::set-output name=old-version::${OLD_VERSION}"
61-
echo "::set-output name=new-version::${NEW_VERSION}"
62-
echo "::set-output name=release-notes::${RELEASE_NOTES//$'\n'/%0A}"
60+
echo "old-version=${OLD_VERSION}" >> "$GITHUB_OUTPUT"
61+
echo "new-version=${NEW_VERSION}" >> "$GITHUB_OUTPUT"
62+
63+
DELIMITER=$(openssl rand -hex 16) # roughly the same entropy as uuid v4 used in https://github.com/actions/toolkit/blob/b36e70495fbee083eb20f600eafa9091d832577d/packages/core/src/file-command.ts#L28
64+
printf "release-notes<<%s\n%s\n%s\n" "${DELIMITER}" "${RELEASE_NOTES}" "${DELIMITER}" >> "${GITHUB_OUTPUT}" # see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings
6365
env:
6466
DESCRIPTOR: .github/pipeline-descriptor.yml
6567
GITHUB_TOKEN: ${{ secrets.IMPLEMENTATION_GITHUB_TOKEN }}
66-
- uses: peter-evans/create-pull-request@v4
68+
- uses: peter-evans/create-pull-request@v5
6769
with:
6870
author: ${{ secrets.IMPLEMENTATION_GITHUB_USERNAME }} <${{ secrets.IMPLEMENTATION_GITHUB_USERNAME }}@users.noreply.github.com>
6971
body: |-

0 commit comments

Comments
 (0)