From 0315e5d2534b1dd1ac97644fc1c50848e7adba9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 01:05:04 +0000 Subject: [PATCH] chore(deps): Bump actions/checkout from 6 to 7 in the all-actions group Bumps the all-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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 73bfbca..b781bd6 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@v6 + uses: actions/checkout@v7 with: path: SurfTimer.Plugin # Checkout for SurfTimer.Shared as a "sibling" folder (NOT a submodule) - name: Checkout Shared repo (sibling folder) - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c60db9..cb997ff 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@v6 + uses: actions/checkout@v7 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@v6 + uses: actions/checkout@v7 with: repository: tslashd/SurfTimer.Shared path: SurfTimer.Shared