From 64060ee5daec1d5b7be322925f57c66fd7f7cc95 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 22:01:48 +0000 Subject: [PATCH] Bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [github/codeql-action](https://github.com/github/codeql-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) Updates `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: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 4 ++-- .github/workflows/dotnet.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index bc8e8d5..f2af171 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -30,7 +30,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v5 - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} - name: Setup .NET @@ -44,6 +44,6 @@ jobs: - name: Build run: dotnet build --no-restore -f ${{ matrix.framework }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 6d92f86..8a68ff0 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -41,7 +41,7 @@ jobs: dotnet publish src/SteamCollectionDownloadSizeCalculator.csproj -c Release -f ${{ matrix.framework }} -r linux-x64 --nologo --self-contained dotnet publish src/SteamCollectionDownloadSizeCalculator.csproj -c Release -f ${{ matrix.framework }} -r linux-arm64 --nologo --self-contained - name: Upload Linux Builds - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' with: name: linux-builds-${{ matrix.framework }} @@ -53,7 +53,7 @@ jobs: dotnet publish src/SteamCollectionDownloadSizeCalculator.csproj -c Release -f ${{ matrix.framework }} -r osx-x64 --nologo --self-contained dotnet publish src/SteamCollectionDownloadSizeCalculator.csproj -c Release -f ${{ matrix.framework }} -r osx-arm64 --nologo --self-contained - name: Upload OSX Builds - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' with: name: osx-builds-${{ matrix.framework }} @@ -65,7 +65,7 @@ jobs: dotnet publish src/SteamCollectionDownloadSizeCalculator.csproj -c Release -f ${{ matrix.framework }} -r win-x64 --nologo --self-contained dotnet publish src/SteamCollectionDownloadSizeCalculator.csproj -c Release -f ${{ matrix.framework }} -r win-arm64 --nologo --self-contained - name: Upload Windows Builds - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' with: name: windows-builds-${{ matrix.framework }}