Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2.3.1 to 3 (#213)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2.3.1...v3)

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

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Mar 21, 2022
1 parent 8322f44 commit 2db3925
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
shell: cmd
run: msbuild /restore /p:Platform="Windows - x64" # Platform is actually irrelevant for core, it's compiled as AnyCPU either way
- name: Upload core artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: MLCoreDebug
path: Output/Debug/MelonLoader/
Expand All @@ -32,7 +32,7 @@ jobs:
shell: cmd
run: msbuild /restore /p:Configuration=Release /p:Platform="Windows - x64"
- name: Upload core artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: MLCoreRelease
path: Output/Release/MelonLoader/
Expand All @@ -46,7 +46,7 @@ jobs:
shell: cmd
run: msbuild Proxy\Proxy.vcxproj -p:Platform=Win32 -p:Configuration=Release
- name: Upload proxy x86
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: MLProxyX86
path: Proxy/Output/Release/x86/version.dll
Expand All @@ -60,7 +60,7 @@ jobs:
shell: cmd
run: msbuild Proxy\Proxy.vcxproj -p:Platform=x64 -p:Configuration=Release
- name: Upload proxy x64
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: MLProxyX64
path: Proxy/Output/Release/x64/version.dll
Expand All @@ -74,7 +74,7 @@ jobs:
shell: cmd
run: msbuild Bootstrap\Bootstrap.vcxproj -p:Platform=Win32 -p:Configuration=Release
- name: Upload proxy x64
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: MLBootstrapX86
path: Bootstrap/Output/Release/x86/MelonLoader/Dependencies/Bootstrap.dll
Expand All @@ -88,7 +88,7 @@ jobs:
shell: cmd
run: msbuild Bootstrap\Bootstrap.vcxproj -p:Platform=x64 -p:Configuration=Release
- name: Upload proxy x64
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
name: MLBootstrapX64
path: Bootstrap/Output/Release/x64/MelonLoader/Dependencies/Bootstrap.dll
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
copy LICENSE.md Output\Debug\x64\MelonLoader\Documentation\
copy NOTICE.txt Output\Debug\x64\MelonLoader\Documentation\
copy README.md Output\Debug\x64\MelonLoader\Documentation\
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
name: Upload Zip | Windows - x64
with:
name: MelonLoader.x64.CI.Debug
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
copy LICENSE.md Output\Debug\x86\MelonLoader\Documentation\
copy NOTICE.txt Output\Debug\x86\MelonLoader\Documentation\
copy README.md Output\Debug\x86\MelonLoader\Documentation\
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
name: Upload Zip | Windows - x86
with:
name: MelonLoader.x86.CI.Debug
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
copy LICENSE.md Output\Release\x64\MelonLoader\Documentation\
copy NOTICE.txt Output\Release\x64\MelonLoader\Documentation\
copy README.md Output\Release\x64\MelonLoader\Documentation\
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
name: Upload Zip | Windows - x64
with:
name: MelonLoader.x64.CI.Release
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
copy LICENSE.md Output\Release\x86\MelonLoader\Documentation\
copy NOTICE.txt Output\Release\x86\MelonLoader\Documentation\
copy README.md Output\Release\x86\MelonLoader\Documentation\
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
name: Upload Zip | Windows - x86
with:
name: MelonLoader.x86.CI.Release
Expand Down

0 comments on commit 2db3925

Please sign in to comment.