Skip to content

Commit d0890d8

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

4 files changed

Lines changed: 16 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
run: ./scripts/integration.sh --builder ${{ matrix.builder }} --token ${{ github.token }}
5757
env:
5858
TMPDIR: "${{ runner.temp }}"
59+
GIT_TOKEN: ${{ github.token }}
5960

6061
release:
6162
name: Release

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,18 @@ jobs:
5151
- name: Checkout
5252
uses: actions/checkout@v6
5353

54+
- name: Free Disk Space
55+
if: vars.RECLAIM_DISK_SPACE == 'true'
56+
uses: paketo-buildpacks/github-config/actions/pull-request/reclaim-disk-space@main
57+
with:
58+
tool-cache: false
59+
android: true
60+
dotnet: true
61+
haskell: true
62+
large-packages: false
63+
docker-images: true
64+
swap-storage: true
65+
5466
- name: Setup Go
5567
uses: actions/setup-go@v6
5668
with:
@@ -60,6 +72,7 @@ jobs:
6072
run: ./scripts/integration.sh --builder ${{ matrix.builder }} --token ${{ github.token }}
6173
env:
6274
TMPDIR: "${{ runner.temp }}"
75+
GIT_TOKEN: ${{ github.token }}
6376

6477
roundup:
6578
name: Integration Tests

scripts/.util/tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"createpackage": "v1.73.0",
33
"jam": "v2.15.1",
44
"libpaktools": "v0.3.0",
5-
"pack": "v0.39.0"
5+
"pack": "v0.39.1"
66
}

scripts/.util/tools.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function util::tools::pack::install() {
158158

159159
util::print::title "Installing pack ${version}"
160160

161-
os=$(util::tools::os macos)
161+
os=$(util::tools::os)
162162
arch=$(util::tools::arch --blank-amd64)
163163

164164
curl "https://github.com/buildpacks/pack/releases/download/${version}/pack-${version}-${os}${arch:+-$arch}.tgz" \
@@ -169,7 +169,6 @@ function util::tools::pack::install() {
169169
if [[ "${pack_config_enable_experimental}" == "true" ]]; then
170170
"${dir}"/pack config experimental true
171171
fi
172-
173172
else
174173
util::print::info "Using pack $("${dir}"/pack version)"
175174
fi

0 commit comments

Comments
 (0)