From 9a2bafeb0562359f70a7225432444df79f244959 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 16:55:33 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 (#669) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' 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 5fec60d5..b2e0c47f 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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 100d9515..ff611e5a 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@v4 + uses: actions/upload-artifact@v5 if: matrix.configuration == 'Release' with: name: DepotDownloader-${{ matrix.runs-on }}