Skip to content

Commit 9c2818f

Browse files
committed
Updating github-config
1 parent 8c6a1f3 commit 9c2818f

3 files changed

Lines changed: 16 additions & 5 deletions

File tree

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,17 @@ jobs:
5252
uses: actions/setup-go@v6
5353
with:
5454
go-version-file: go.mod
55+
- name: Free Disk Space
56+
if: vars.RECLAIM_DISK_SPACE == 'true'
57+
uses: paketo-buildpacks/github-config/actions/pull-request/reclaim-disk-space@main
58+
with:
59+
tool-cache: false
60+
android: true
61+
dotnet: true
62+
haskell: true
63+
large-packages: false
64+
docker-images: true
65+
swap-storage: true
5566
- name: Run Integration Tests
5667
run: ./scripts/integration.sh --builder ${{ matrix.builder }} --token ${{ github.token }}
5768
env:

.github/workflows/push-buildpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.7
115+
- uses: buildpacks/github-actions/setup-tools@v5.10.0
116116
- name: Push to DockerHub
117117
if: ${{ steps.parse_configs.outputs.push_to_dockerhub == 'true' }}
118118
id: push

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
uses: actions/checkout@v6
196196
197197
- name: Download artifact files
198-
uses: actions/download-artifact@v6
198+
uses: actions/download-artifact@v7
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
@@ -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@v6
232+
uses: actions/download-artifact@v7
233233
with:
234234
name: metadata.json
235235
@@ -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@v6
302+
uses: actions/download-artifact@v7
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@v6
312+
uses: actions/download-artifact@v7
313313
with:
314314
path: "${{ steps.make-outputdir.outputs.outputdir }}/metadata-files"
315315
pattern: "*metadata-file.json"

0 commit comments

Comments
 (0)