From f22a48dcf88e3fd5c152992fdc893ef3848d7f20 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 18:11:14 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 5 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 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/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 491ea5e..9ab6e15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: name: Build (Debug) runs-on: macos-14 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 # The macos-14 image still defaults to Xcode 15.4, whose stricter Swift # concurrency checking rejects code this project compiles cleanly under diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a78a78c..3810c98 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: name: Build & Publish runs-on: macos-14 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v7 with: # Need full history + tags so the release-notes step can diff # against the previous tag. @@ -24,7 +24,7 @@ jobs: # and a missing/renamed repo must fail loudly rather than silently fall # back to auto-generated notes. - name: Check out release notes - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: wavever/clipth-website path: .website