Skip to content

Commit

Permalink
ci(deps): update actions/upload-artifact action to v4.5.0 (#4020)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 18, 2024
1 parent 7cc35f4 commit 7b291c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ jobs:
- name: Tar files
run: tar -cvf website.tar build/website
- name: Upload website
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: website-${{ github.sha }}
path: website.tar
@@ -232,20 +232,20 @@ jobs:
fi
- name: Upload fatjars built on Linux
if: ${{ runner.os == 'Linux' }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: fat-jars-${{ github.sha }}
path: build/shadow/*
if-no-files-found: error
- name: Upload the PKGBUILD
if: ${{ runner.os == 'Linux' }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: pkgbuild-${{ github.sha }}
path: build/pkgbuild/PKGBUILD
if-no-files-found: error
- name: Upload platform-specific packages
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: installer-package-${{ github.sha }}-${{ runner.os }}
path: build/package/*

0 comments on commit 7b291c6

Please sign in to comment.