From 2023a7099828022fe29eee4959df2619142734bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 20:20:50 +0000 Subject: [PATCH] build(deps): bump the action-dependencies group across 1 directory with 3 updates Bumps the action-dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/dotnet.yml | 8 ++++---- .github/workflows/nuget-publish.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f81a968..59930e2 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -57,7 +57,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Add any setup steps before running the `github/codeql-action/init` action. # This includes steps like installing compilers or runtimes (`actions/setup-node` diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9b45700..e7f9047 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,14 +26,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-dotnet@v5 with: global-json-file: global.json # Cache NuGet packages to speed up builds - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.nuget/packages # key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} @@ -64,7 +64,7 @@ jobs: -p:CoverletOutput=coverage - name: Upload coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: "tests/**/coverage.cobertura.xml" token: ${{ secrets.CODECOV_TOKEN }} @@ -73,7 +73,7 @@ jobs: - name: Upload test results # always upload test results, even if the tests fail if: always() && (steps.test.outcome == 'failure' || steps.test.outcome == 'success') - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: report_type: test_results files: "tests/**/TestResults/junit.xml" diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 47dcef7..fd7f308 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -55,14 +55,14 @@ jobs: echo "BUILD_TARGET=$buildTarget" >> $Env:GITHUB_ENV echo "VERSION=$version" >> $Env:GITHUB_ENV - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-dotnet@v5 with: global-json-file: global.json # Cache NuGet packages to speed up builds - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.nuget/packages # key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}