Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
docgalaxyblock committed Apr 6, 2024
1 parent 520fc56 commit c7ad894
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/BuildOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
sudo apt-get install --yes aria2 coreutils p7zip-full qemu-user-static zip
- name: Checkout CustomPiOS
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "guysoft/CustomPiOS"
path: CustomPiOS

- name: Checkout OpenMowerOS
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
path: OpenMowerOS
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Cache Base Source Image
id: cache
#if:
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: OpenMowerOS/src/image/*.img.xz
key: base-image-${{ steps.checksum.outputs.CHECKSUM }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Upload failed Logfile
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-failed-${{ steps.rename-image.outputs.image }}.log
path: OpenMowerOS/src/build.log
Expand All @@ -143,19 +143,19 @@ jobs:
sha256sum ${{ steps.rename-image.outputs.image }}.img.xz > ${{ steps.rename-image.outputs.image }}.img.xz.sha256
- name: Upload Compressed Image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.rename-image.outputs.image }}.img.xz
path: ${{ steps.rename-image.outputs.image }}.img.xz

- name: Upload Compressed Image Checksum
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.rename-image.outputs.image }}.img.xz.sha256
path: ${{ steps.rename-image.outputs.image }}.img.xz.sha256

- name: Upload Image Checksum
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.rename-image.outputs.image }}.img.sha256
path: ${{ steps.rename-image.outputs.image }}.img.sha256
Expand Down

0 comments on commit c7ad894

Please sign in to comment.