Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-executable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
zip -r ./${{ env.githubRepositoryName }}-${{ env.appVersion }}-${{ matrix.platform }}.zip ./${{ env.githubRepositoryName }}-${{ env.appVersion }}-${{ matrix.platform }}/

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: executable-${{ matrix.platform }}
path: ./artifacts/*.zip
Expand All @@ -143,7 +143,7 @@ jobs:
find ./artifacts -type f -name "*.zip" | sort

- name: Upload consolidated artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: cleanuparr-executables
path: ./artifacts/*.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
npm run build

- name: Upload frontend artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: frontend-dist
path: code/frontend/dist/ui/browser
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ jobs:
echo "pkgName=${pkg_name}" >> $GITHUB_ENV

- name: Upload installer as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Cleanuparr-macos-${{ matrix.artifact_suffix }}-installer
path: '${{ env.pkgName }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
echo "installerName=$installerName" >> $env:GITHUB_ENV

- name: Upload installer artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Cleanuparr-windows-installer
path: installer/${{ env.installerName }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
vulnerability-check: true

- name: Upload dependency review results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: dependency-review-results
path: dependency-review-*.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ jobs:
run: dotnet test code/backend/cleanuparr.sln --configuration Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage" --results-directory ./coverage

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results
path: ./coverage/*.trx
retention-days: 30

- name: Upload coverage reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-report
path: ./coverage/**/coverage.cobertura.xml
Expand Down
Loading