From 9814f9d823430c5e3aa40a15c73b661f96c460bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 01:05:29 +0000 Subject: [PATCH] chore[actions](deps): bump the updates group across 1 directory with 2 updates Bumps the updates group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). 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) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: updates - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: updates ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- .github/workflows/wiki-drawio-upload.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 781fb236..bd2c540a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup .NET uses: actions/setup-dotnet@v5 @@ -39,7 +39,7 @@ jobs: dotnet-version: '9.0.x' - name: Cache NuGet packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }} @@ -89,7 +89,7 @@ jobs: run: Set-ItemProperty 'HKLM:\System\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -value 1 - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup .NET uses: actions/setup-dotnet@v5 @@ -97,7 +97,7 @@ jobs: dotnet-version: '9.0.x' - name: Cache NuGet packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }} @@ -211,7 +211,7 @@ jobs: || github.event.inputs.force_nightly == 'true' steps: - name: Checkout external files folder - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: sparse-checkout: | external diff --git a/.github/workflows/wiki-drawio-upload.yml b/.github/workflows/wiki-drawio-upload.yml index 2dc0a75f..88f9aec0 100644 --- a/.github/workflows/wiki-drawio-upload.yml +++ b/.github/workflows/wiki-drawio-upload.yml @@ -36,7 +36,7 @@ jobs: - name: Checkout Wiki Repository if: steps.wiki-check.outputs.exists == 'true' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.repository }}-docs token: ${{ secrets.DOCS_DISPATCH_TOKEN }}