From aee5b0870d82bb25e5504494a553918703bf55fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 02:35:04 +0000 Subject: [PATCH] chore(deps): Bump actions/checkout from 5 to 6 in the all-actions group Bumps the all-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 583e65e..0441763 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -13,13 +13,13 @@ jobs: steps: # Checkout for the current repo (plugin) into subfolder ./SurfTimer.Plugin - name: Checkout Plugin repo into subfolder - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: SurfTimer.Plugin # Checkout for SurfTimer.Shared as a "sibling" folder (NOT a submodule) - name: Checkout Shared repo (sibling folder) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7c6aa43..81bc03a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,14 +37,14 @@ jobs: # Checkout plugin repo at the tag - name: Checkout plugin repository (Timer) - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: Timer ref: ${{ env.RELEASE_TAG }} # Checkout SurfTimer.Shared as sibling folder (ProjectReference resolves via ../../SurfTimer.Shared) - name: Checkout SurfTimer.Shared - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared