Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ jobs:

- name: Archive test results
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Unity Test Results ${{ matrix.unityVersion }}
path: ${{ steps.tests.outputs.artifactsPath }}

- name: Archive coverage results
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Unity Coverage Results ${{ matrix.unityVersion }}
path: ${{ steps.tests.outputs.coveragePath }}
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Archive test results
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: netstandard Test Results
path: src/TestResults
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

- name: Archive ReSharper run
if: ${{ always() }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ReSharper
path: src/inspect.xml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releasables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: dotnet pack src --output nupkg

- name: Archive nupkg
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: nupkg
path: nupkg/*
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
customParameters: -disable-assembly-updater

- name: Archive docs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Docs
path: docfx/docs_site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unity-activation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: game-ci/unity-request-activation-file@v2
# Upload artifact (Unity_v20XX.X.XXXX.alf)
- name: Expose as artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
Loading