Skip to content

Commit

Permalink
Bump actions/upload-artifact from 1 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v1...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Apr 17, 2024
1 parent a8eb2d4 commit a7724aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- run: dotnet build -c ${{ env.BUILD_CONFIG }} ./MagicOnion.sln
# pack
- run: dotnet pack -c ${{ env.BUILD_CONFIG }} ./MagicOnion.Packaging.slnf --include-symbols --include-source --no-build -p:VersionSuffix=${MAGICONION_VERSION} -o ./publish
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: nuget
path: ./publish/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
directory: src/MagicOnion.Client.Unity

# Store artifacts.
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: MagicOnion.Client.Unity.${{ matrix.unity }}.unitypackage
path: ./src/MagicOnion.Client.Unity/MagicOnion.Client.Unity.unitypackage
4 changes: 2 additions & 2 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# pack nuget
- run: dotnet pack -c Release ./MagicOnion.Packaging.slnf --include-symbols --include-source --no-build -o ./publish
- run: cd ./publish/ && ls . | grep -P 'MagicOnion\.\d+\.\d+\.\d+\.snupkg' | xargs rm
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: nuget
path: ./publish/
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
directory: src/MagicOnion.Client.Unity

# Store artifacts.
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: MagicOnion.Client.Unity.unitypackage
path: ./src/MagicOnion.Client.Unity/MagicOnion.Client.Unity.unitypackage
Expand Down

0 comments on commit a7724aa

Please sign in to comment.