diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d2522e7..40ff469 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,7 @@ jobs: options: --privileged steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set current date as environment variable run: echo "DATE=$(date +'%Y.%m.%d')" >>$GITHUB_ENV @@ -33,7 +33,7 @@ jobs: run: bash build-iso - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.dev == 'true' }} with: name: Arch Linux ${{ env.DATE }} @@ -42,7 +42,7 @@ jobs: CHECKSUMS.txt - name: Create tag and release - uses: softprops/action-gh-release@v0.1.14 + uses: softprops/action-gh-release@v2 if: ${{ github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.dev == 'false') }} with: name: Arch Linux ${{ env.DATE }} @@ -51,3 +51,4 @@ jobs: files: | archlinux-${{ env.DATE }}-x86_64.iso CHECKSUMS.txt +