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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
$hash = (Get-FileHash dist\UnityScraper.exe -Algorithm SHA256).Hash.ToLower()
"$hash *UnityScraper.exe" | Set-Content dist\UnityScraper.exe.sha256

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: UnityScraper-Windows-x64
path: |
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
set -e
test "$status" -eq 124

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: UnityScraper-Linux-x86_64
path: |
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
test -x dist/UnityScraper.app/Contents/MacOS/UnityScraper
plutil -lint dist/UnityScraper.app/Contents/Info.plist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: UnityScraper-macOS-arm64
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Generate software bill of materials
run: python scripts/generate_sbom.py

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: release-sbom
path: UnityScraper-SBOM.cdx.json
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
$hash = (Get-FileHash UnityScraper-Windows-x64.zip -Algorithm SHA256).Hash.ToLower()
"$hash *UnityScraper-Windows-x64.zip" | Set-Content UnityScraper-Windows-x64.zip.sha256

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: release-windows
path: |
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Build Linux release
run: ./build_linux.sh

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: release-linux
path: |
Expand All @@ -125,7 +125,7 @@ jobs:
run: python -m pip install -r requirements.txt pyinstaller
- name: Build macOS release
run: ./build_macos.sh
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: release-macos
path: |
Expand Down
Loading