Skip to content

Commit 66549f9

Browse files
committed
Updating github-config
1 parent 3b26710 commit 66549f9

10 files changed

Lines changed: 17 additions & 17 deletions

.github/workflows/approve-bot-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Checkout
5454
if: steps.human-commits.outputs.human_commits == 'false' && steps.unverified-commits.outputs.unverified_commits == 'false'
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656

5757
- name: Approve
5858
if: steps.human-commits.outputs.human_commits == 'false' && steps.unverified-commits.outputs.unverified_commits == 'false'

.github/workflows/create-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
release_notes: ${{ steps.notes.outputs.body }}
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Setup Go
21-
uses: actions/setup-go@v5
21+
uses: actions/setup-go@v6
2222
with:
2323
go-version-file: go.mod
2424

@@ -54,7 +54,7 @@ jobs:
5454
needs: smoke
5555
steps:
5656
- name: Checkout With History
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
fetch-depth: 0 # gets full history
6060

.github/workflows/lint-yaml.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
lintYaml:
1111
runs-on: ubuntu-24.04
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414

1515
- name: Checkout github-config
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
repository: paketo-buildpacks/github-config
1919
path: github-config

.github/workflows/push-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
echo "tag=$(jq -r '.release.tag_name' "${GITHUB_EVENT_PATH}" | sed s/^v//)" >> "$GITHUB_OUTPUT"
1818
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Get pack version
2323
id: pack-version

.github/workflows/synchronize-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on:
1313
- ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: micnncim/action-label-syncer@v1
1717
env:
1818
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/test-builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414

1515
- name: Setup Go
16-
uses: actions/setup-go@v5
16+
uses: actions/setup-go@v6
1717
with:
1818
go-version-file: go.mod
1919

.github/workflows/test-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Setup Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version-file: go.mod
2121

.github/workflows/update-builder-toml.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Check out
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Checkout branch
1919
uses: paketo-buildpacks/github-config/actions/pull-request/checkout-branch@main

.github/workflows/update-github-config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
steps:
1515

1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
token: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
2020

2121
- name: Checkout github-config
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
repository: paketo-buildpacks/github-config
2525
path: github-config

.github/workflows/update-go-mod-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Checkout PR Branch
1818
uses: paketo-buildpacks/github-config/actions/pull-request/checkout-branch@main
1919
with:
2020
branch: automation/go-mod-update/update-main
2121
- name: Setup Go
2222
id: setup-go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version-file: go.mod
2626
- name: Get current go toolchain version

0 commit comments

Comments
 (0)