Skip to content

Commit 5fba349

Browse files
committed
Updating github-config
1 parent 985e404 commit 5fba349

14 files changed

Lines changed: 41 additions & 33 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@v5
55+
uses: actions/checkout@v6
5656

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

.github/workflows/codeql-analysis.yml

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

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v4

.github/workflows/compile-dependency.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Check out code
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646

4747
- name: Enable experimental features for Docker daemon and CLI
4848
run: |
@@ -99,7 +99,7 @@ jobs:
9999
arch="${{ inputs.arch }}"
100100
101101
- name: Upload compiled artifact
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v5
103103
if: ${{ inputs.shouldCompile == true || inputs.shouldCompile == 'true' }}
104104
with:
105105
name: '${{ inputs.uploadArtifactName }}'

.github/workflows/create-draft-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
builders: ${{ steps.builders.outputs.builders }}
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Setup Go
2727
uses: actions/setup-go@v6
2828
with:
@@ -47,7 +47,7 @@ jobs:
4747
fail-fast: false # don't cancel all test jobs when one fails
4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
- name: Setup Go
5252
uses: actions/setup-go@v6
5353
with:
@@ -69,7 +69,7 @@ jobs:
6969

7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@v5
72+
uses: actions/checkout@v6
7373
with:
7474
fetch-tags: true
7575

.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@v5
13+
- uses: actions/checkout@v6
1414

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

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Setup Go
1717
uses: actions/setup-go@v6

.github/workflows/push-buildpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424

2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Parse Event
2929
id: event
@@ -112,7 +112,7 @@ jobs:
112112
password: ${{ env.GCR_PASSWORD }}
113113
registry: ${{ env.GCR_REGISTRY }}
114114

115-
- uses: buildpacks/github-actions/setup-tools@v5.9.6
115+
- uses: buildpacks/github-actions/setup-tools@v5.9.7
116116
- name: Push to DockerHub
117117
if: ${{ steps.parse_configs.outputs.push_to_dockerhub == 'true' }}
118118
id: push

.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@v5
15+
- uses: actions/checkout@v6
1616
- uses: micnncim/action-label-syncer@v1
1717
env:
1818
GITHUB_TOKEN: ${{ github.token }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
builders: ${{ steps.builders.outputs.builders }}
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Setup Go
2424
uses: actions/setup-go@v6
@@ -49,7 +49,7 @@ jobs:
4949
fail-fast: false # don't cancel all test jobs when one fails
5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353

5454
- name: Setup Go
5555
uses: actions/setup-go@v6
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: ubuntu-24.04
8383
steps:
8484
- name: Upload Artifact
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: event-payload
8888
path: ${{ github.event_path }}

.github/workflows/update-dependencies-from-metadata.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
compilation-length: ${{ steps.retrieve.outputs.compilation-length }}
2424
steps:
2525
- name: Check out code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Setup Go
2929
uses: actions/setup-go@v6
@@ -65,13 +65,13 @@ jobs:
6565
echo "compilation-length=$complength" >> "$GITHUB_OUTPUT"
6666
6767
- name: Upload `${{ steps.retrieve.outputs.metadata-filepath }}`
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
name: metadata.json
7171
path: ${{ steps.retrieve.outputs.metadata-filepath }}
7272
7373
- name: Upload `${{ steps.retrieve.outputs.from-source-metadata-filepath }}`
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v5
7575
with:
7676
name: from-source-metadata.json
7777
path: ${{ steps.retrieve.outputs.from-source-metadata-filepath }}
@@ -87,7 +87,7 @@ jobs:
8787
runs-on: ubuntu-latest
8888
steps:
8989
- name: Check out code
90-
uses: actions/checkout@v5
90+
uses: actions/checkout@v6
9191
9292
- name: Has Compilation Action?
9393
id: compile-check
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ubuntu-latest
123123
steps:
124124
- name: Check out code
125-
uses: actions/checkout@v5
125+
uses: actions/checkout@v6
126126
127127
- name: Make Temporary Artifact Directory
128128
id: make-outputdir
@@ -192,10 +192,10 @@ jobs:
192192
runs-on: ubuntu-latest
193193
steps:
194194
- name: Check out code
195-
uses: actions/checkout@v5
195+
uses: actions/checkout@v6
196196
197197
- name: Download artifact files
198-
uses: actions/download-artifact@v4
198+
uses: actions/download-artifact@v6
199199
with:
200200
name: "${{ needs.retrieve.outputs.id }}-${{ matrix.includes.version }}-${{ matrix.includes.os != '' && matrix.includes.os || 'linux' }}-${{ matrix.includes.arch != '' && matrix.includes.arch || 'amd64' }}-${{ matrix.includes.target }}"
201201
@@ -210,7 +210,7 @@ jobs:
210210
echo "checksum-file=$(basename ./*.tgz.checksum)" >> "$GITHUB_OUTPUT"
211211
212212
- name: Configure AWS Credentials
213-
uses: aws-actions/configure-aws-credentials@v4
213+
uses: aws-actions/configure-aws-credentials@v5
214214
with:
215215
aws-access-key-id: ${{ secrets.AWS_S3_DEPENDENCIES_ACCESS_KEY_ID }}
216216
aws-secret-access-key: ${{ secrets.AWS_S3_DEPENDENCIES_SECRET_ACCESS_KEY }}
@@ -229,7 +229,7 @@ jobs:
229229
run: echo "checksum=$(cat ${{ steps.get-file-names.outputs.checksum-file }})" >> "$GITHUB_OUTPUT"
230230
231231
- name: Download metadata.json
232-
uses: actions/download-artifact@v4
232+
uses: actions/download-artifact@v6
233233
with:
234234
name: metadata.json
235235
@@ -264,7 +264,7 @@ jobs:
264264
arch: ${{ matrix.includes.arch }}
265265
266266
- name: Upload modified metadata
267-
uses: actions/upload-artifact@v4
267+
uses: actions/upload-artifact@v5
268268
with:
269269
name: ${{ steps.dependency-metadata.outputs.file }}
270270
path: ${{ steps.dependency-metadata.outputs.file }}
@@ -285,7 +285,7 @@ jobs:
285285
runs-on: ubuntu-latest
286286
steps:
287287
- name: Check out code
288-
uses: actions/checkout@v5
288+
uses: actions/checkout@v6
289289
290290
- name: Checkout Branch
291291
uses: paketo-buildpacks/github-config/actions/pull-request/checkout-branch@main
@@ -299,7 +299,7 @@ jobs:
299299
300300
# Metadata file for the non-compiled dependencies, if there are any
301301
- name: Download metadata.json file
302-
uses: actions/download-artifact@v4
302+
uses: actions/download-artifact@v6
303303
with:
304304
path: "${{ steps.make-outputdir.outputs.outputdir }}/metadata-files"
305305
pattern: "from-source-metadata.json"
@@ -309,7 +309,7 @@ jobs:
309309
# Download each metadata file, and combine them into one
310310
- name: Download individual metadata-file.json file(s)
311311
if: ${{ needs.update-metadata.result == 'success' }}
312-
uses: actions/download-artifact@v4
312+
uses: actions/download-artifact@v6
313313
with:
314314
path: "${{ steps.make-outputdir.outputs.outputdir }}/metadata-files"
315315
pattern: "*metadata-file.json"

0 commit comments

Comments
 (0)