From 24995f38ba6f54e6e989577c630bafacdff3f8d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 07:21:44 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/compile_linux.yml | 2 +- .github/workflows/compile_macos.yml | 2 +- .github/workflows/compile_windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile_linux.yml b/.github/workflows/compile_linux.yml index 4a8d3af..a45ba98 100644 --- a/.github/workflows/compile_linux.yml +++ b/.github/workflows/compile_linux.yml @@ -22,7 +22,7 @@ jobs: run: dotnet publish --no-restore -r linux-x64 -p:BuildNumber="${{ github.run_number }}" -p:Version="${{ inputs.VERSION }}" - name: Upload Release for linux-x64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MelonLoader.Installer.Linux path: Output/linux-x64 \ No newline at end of file diff --git a/.github/workflows/compile_macos.yml b/.github/workflows/compile_macos.yml index 8533b5f..5bec5ca 100644 --- a/.github/workflows/compile_macos.yml +++ b/.github/workflows/compile_macos.yml @@ -42,7 +42,7 @@ jobs: cp Resources/icon.icns "Output/osx-universal/MelonLoader Installer.app/Contents/Resources/" - name: Upload Release - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MelonLoader.Installer.MacOS path: Output/osx-universal \ No newline at end of file diff --git a/.github/workflows/compile_windows.yml b/.github/workflows/compile_windows.yml index 379025d..f76dc10 100644 --- a/.github/workflows/compile_windows.yml +++ b/.github/workflows/compile_windows.yml @@ -22,7 +22,7 @@ jobs: run: dotnet publish --no-restore -r win-x64 -p:BuildNumber="${{ github.run_number }}" -p:Version="${{ inputs.VERSION }}" - name: Upload Release for win-x64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MelonLoader.Installer path: Output/win-x64 \ No newline at end of file