Skip to content

Commit 4aabfcd

Browse files
committed
Updating github-config
1 parent b02634b commit 4aabfcd

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/create-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@ jobs:
450450
id: hashcode_pattern
451451
run: |
452452
os_codename="${{ needs.preparation.outputs.os_codename }}"
453+
os_name="${{ needs.preparation.outputs.os_name }}"
453454
stack_type="${{ matrix.stacks.stack_type }}"
454455
repo_type="${{ needs.preparation.outputs.repo_type }}"
455456
build_image="${{ matrix.stacks.build_image }}"
@@ -631,7 +632,7 @@ jobs:
631632

632633
# https://github.com/docker/setup-qemu-action
633634
- name: Set up QEMU
634-
uses: docker/setup-qemu-action@v3
635+
uses: docker/setup-qemu-action@v4
635636

636637
- name: Create stack ${{ matrix.stacks.name }}
637638
id: create-stack
@@ -724,7 +725,7 @@ jobs:
724725
- name: Write Empty Previous Receipts
725726
if: ${{ steps.check_previous.outputs.exists == 'false' || matrix.arch.is_new == true || matrix.stacks.is_new == true }}
726727
run: |
727-
if [ ${{ matrix.stacks.create_build_image }} == true ]; then
728+
if [ "${{ matrix.stacks.create_build_image }}" == "true" ]; then
728729
if [ ! -f "./${{ matrix.arch.name }}-previous-build-receipt-${{ matrix.stacks.name }}" ]; then
729730
echo '{"components":[]}' > "./${{ matrix.arch.name }}-previous-build-receipt-${{ matrix.stacks.name }}"
730731
fi
@@ -999,7 +1000,7 @@ jobs:
9991000
10001001
if [ "${build_added:-0}" -eq 0 ] && [ "${build_modified:-0}" -eq 0 ] && [ "${run_added}" -eq 0 ] && [ "${run_modified}" -eq 0 ]; then
10011002
echo "No packages changed."
1002-
# We ommit setting "packages_changed" variable to false,
1003+
# We omit setting "packages_changed" variable to false,
10031004
# as there is an edge case scenario overriding any true value due to parallelization
10041005
else
10051006
echo "Packages changed."

.github/workflows/push-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
uses: actions/checkout@v6
206206

207207
- name: Set up QEMU
208-
uses: docker/setup-qemu-action@v3
208+
uses: docker/setup-qemu-action@v4
209209

210210
- name: Set up buildx
211211
uses: docker/setup-buildx-action@v3
@@ -218,15 +218,15 @@ jobs:
218218
token: ${{ secrets.PAKETO_BOT_GITHUB_TOKEN }}
219219

220220
- name: Docker login docker.io
221-
uses: docker/login-action@v3
221+
uses: docker/login-action@v4
222222
if: ${{ needs.preparation.outputs.push_to_dockerhub == 'true' }}
223223
with:
224224
username: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_USERNAME }}
225225
password: ${{ secrets.PAKETO_BUILDPACKS_DOCKERHUB_PASSWORD }}
226226
registry: docker.io
227227

228228
- name: Docker login gcr.io
229-
uses: docker/login-action@v3
229+
uses: docker/login-action@v4
230230
if: ${{ needs.preparation.outputs.push_to_gcr == 'true' }}
231231
with:
232232
username: ${{ env.GCR_USERNAME }}

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

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

6161
# https://github.com/docker/setup-qemu-action
6262
- name: Set up QEMU
63-
uses: docker/setup-qemu-action@v3
63+
uses: docker/setup-qemu-action@v4
6464

6565
- name: Create stack ${{ matrix.stacks.name }}
6666
id: create-stack

0 commit comments

Comments
 (0)