WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 5a5aac5

Browse files
committed
chore: update reusable factory action reference
- Changed the reusable factory action reference from a specific commit to a more general reference using 'handle-full-repository-urls'. - This change improves maintainability by allowing the use of the latest updates in the reusable action without needing to update the commit hash. Signed-off-by: Itxaka <[email protected]>
1 parent fc448ed commit 5a5aac5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/image-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
build:
1616
name: ${{ matrix.base_image }}
17-
uses: kairos-io/kairos-factory-action/.github/workflows/reusable-factory.yaml@71d85fe9d4267e373a5d27b4a0fddd44628fb1ba # v0.0.11
17+
uses: kairos-io/kairos-factory-action/.github/workflows/reusable-factory.yaml@handle-full-repository-urls
1818
secrets:
1919
registry_username: ${{ secrets.QUAY_USERNAME }}
2020
registry_password: ${{ secrets.QUAY_PASSWORD }}

.github/workflows/reusable-encryption-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
CPUS: 2
9494
DRIVE_SIZE: 50000
9595
run: |
96-
export ISO=$(ls $PWD/*${{ steps.split.outputs.flavor }}*.iso)
96+
export ISO=$(ls $PWD/*.iso| head -1)
9797
.github/encryption-tests.sh
9898
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
9999
if: failure()

.github/workflows/reusable-qemu-netboot-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Extract ipxe artifacts for the ipxe server
8181
run: |
8282
mkdir -p build
83-
export ISO=$(ls $PWD/*${{ steps.split.outputs.flavor }}*.iso)
83+
export ISO=$(ls $PWD/*.iso| head -1)
8484
isoinfo -x /rootfs.squashfs -R -i ${ISO} > build/kairos-squashfs
8585
isoinfo -x /boot/kernel -R -i ${ISO} > build/kairos-kernel
8686
isoinfo -x /boot/initrd -R -i ${ISO} > build/kairos-initrd

.github/workflows/uki.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515
cancel-in-progress: true
1616
jobs:
1717
factory:
18-
uses: kairos-io/kairos-factory-action/.github/workflows/reusable-factory.yaml@71d85fe9d4267e373a5d27b4a0fddd44628fb1ba # v0.0.11
18+
uses: kairos-io/kairos-factory-action/.github/workflows/reusable-factory.yaml@handle-full-repository-urls
1919
secrets:
2020
registry_username: ${{ secrets.QUAY_USERNAME }}
2121
registry_password: ${{ secrets.QUAY_PASSWORD }}

0 commit comments

Comments
 (0)