From 370b80096757b66ae40543c81a56496a562075ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 22:33:00 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 (#685) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 16 ++++++++-------- .github/workflows/sk2-ci.yml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27fa470e..f38ce23e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: run: dotnet publish DepotDownloader/DepotDownloader.csproj -c ${{ matrix.configuration }} -o artifacts /p:ContinuousIntegrationBuild=true - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'windows-latest' with: name: DepotDownloader-framework @@ -70,7 +70,7 @@ jobs: run: dotnet publish DepotDownloader/DepotDownloader.csproj --configuration Release -p:PublishSingleFile=true -p:DebugType=embedded --self-contained --runtime osx-arm64 --output selfcontained-osx-arm64 - name: Upload Windows-x64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'windows-latest' with: name: DepotDownloader-windows-x64 @@ -78,7 +78,7 @@ jobs: if-no-files-found: error - name: Upload Windows-arm64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'windows-latest' with: name: DepotDownloader-windows-arm64 @@ -86,7 +86,7 @@ jobs: if-no-files-found: error - name: Upload Linux-x64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'ubuntu-latest' with: name: DepotDownloader-linux-x64 @@ -94,7 +94,7 @@ jobs: if-no-files-found: error - name: Upload Linux-arm - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'ubuntu-latest' with: name: DepotDownloader-linux-arm @@ -102,7 +102,7 @@ jobs: if-no-files-found: error - name: Upload Linux-arm64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'ubuntu-latest' with: name: DepotDownloader-linux-arm64 @@ -110,7 +110,7 @@ jobs: if-no-files-found: error - name: Upload macOS-x64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'macos-latest' with: name: DepotDownloader-macos-x64 @@ -118,7 +118,7 @@ jobs: if-no-files-found: error - name: Upload macOS-arm64 - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' && matrix.runs-on == 'macos-14' with: name: DepotDownloader-macos-arm64 diff --git a/.github/workflows/sk2-ci.yml b/.github/workflows/sk2-ci.yml index 15d77359..154709c9 100644 --- a/.github/workflows/sk2-ci.yml +++ b/.github/workflows/sk2-ci.yml @@ -31,7 +31,7 @@ jobs: run: dotnet publish DepotDownloader/DepotDownloader.csproj -c ${{ matrix.configuration }} -o artifacts /p:ContinuousIntegrationBuild=true - name: Upload artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: matrix.configuration == 'Release' with: name: DepotDownloader-${{ matrix.runs-on }}