diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b277e1..edd3a58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | diff --git a/.github/workflows/unity-bulid-test.yml b/.github/workflows/unity-bulid-test.yml index 1103b10..c365449 100644 --- a/.github/workflows/unity-bulid-test.yml +++ b/.github/workflows/unity-bulid-test.yml @@ -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 }} @@ -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