From 81cf3f6b3d1d7af34bee1c22f0e26d18467be8e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 22:54:07 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 (#695) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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 f38ce23e..08af50a3 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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@v6 + uses: actions/upload-artifact@v7 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 154709c9..176e5c08 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@v6 + uses: actions/upload-artifact@v7 if: matrix.configuration == 'Release' with: name: DepotDownloader-${{ matrix.runs-on }}