Skip to content

Commit

Permalink
actions/upload-artifact@v3 → actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
skibitsky committed Feb 5, 2025
1 parent a5efb5f commit c72dae1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: dotnet nuget push "*.nupkg" --api-key ${{secrets.nuget_api_key}} --source https://api.nuget.org/v3/index.json

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unity-bulid-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
targetPlatform: ${{ matrix.targetPlatform }}
customParameters: ${{ matrix.targetPlatform != 'WebGL' && '-Development' || '' }} -mixpanelToken ${{ secrets.MIXPANEL_TOKEN }} -sentryToken ${{ secrets.SENTRY_TOKEN }}
buildMethod: UnityBuilderAction.Builder.BuildProject
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: Build-${{ matrix.targetPlatform }}
path: Builds/${{ matrix.targetPlatform }}
Expand All @@ -61,7 +61,7 @@ jobs:
with:
fetch-depth: 0
- name: Download WebGL Build Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Build-WebGL
path: Builds/WebGL
Expand Down

0 comments on commit c72dae1

Please sign in to comment.