Skip to content

Commit 6b190b9

Browse files
committed
Updating github-config
1 parent bf38208 commit 6b190b9

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

.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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
support_usns: ${{ steps.polling-os-type.outputs.support_usns }}
4545
steps:
4646
- name: Checkout repo
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
with:
4949
fetch-depth: 0 # gets full history
5050

@@ -523,7 +523,7 @@ jobs:
523523
stack_files_changed: ${{ steps.compare.outputs.stack_files_changed }}
524524
steps:
525525
- name: Checkout With History
526-
uses: actions/checkout@v4
526+
uses: actions/checkout@v5
527527
with:
528528
fetch-depth: 0 # gets full history
529529

@@ -589,7 +589,7 @@ jobs:
589589
stacks: ${{ fromJSON(needs.preparation.outputs.stacks) }}
590590
steps:
591591
- name: Checkout
592-
uses: actions/checkout@v4
592+
uses: actions/checkout@v5
593593

594594
# https://github.com/docker/setup-qemu-action
595595
- name: Set up QEMU
@@ -660,7 +660,7 @@ jobs:
660660
arch: ${{ fromJSON(needs.preparation.outputs.architectures) }}
661661
steps:
662662
- name: Checkout With History
663-
uses: actions/checkout@v4
663+
uses: actions/checkout@v5
664664
with:
665665
fetch-depth: 0 # gets full history
666666

@@ -975,10 +975,10 @@ jobs:
975975
runs-on: ubuntu-24.04
976976
steps:
977977
- name: Checkout
978-
uses: actions/checkout@v4
978+
uses: actions/checkout@v5
979979

980980
- name: Setup Go
981-
uses: actions/setup-go@v5
981+
uses: actions/setup-go@v6
982982
with:
983983
go-version-file: go.mod
984984

@@ -1026,7 +1026,7 @@ jobs:
10261026
printf "Force Release: %s\n" "${{ github.event.inputs.force }}"
10271027
10281028
- name: Checkout With History
1029-
uses: actions/checkout@v4
1029+
uses: actions/checkout@v5
10301030
with:
10311031
fetch-depth: 0 # gets full history
10321032

.github/workflows/push-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
stacks: ${{ steps.get-stacks.outputs.stacks }}
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Parse Event
3939
id: event
@@ -202,7 +202,7 @@ jobs:
202202

203203
steps:
204204
- name: Checkout
205-
uses: actions/checkout@v4
205+
uses: actions/checkout@v5
206206

207207
- name: Set up QEMU
208208
uses: docker/setup-qemu-action@v3

.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-pull-request.yml

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

1616
- name: Setup Go
17-
uses: actions/setup-go@v5
17+
uses: actions/setup-go@v6
1818
with:
1919
go-version-file: go.mod
2020

.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)