From 010cead6a86afc0348a2eea5faef6ecb27afd0fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Jul 2026 07:49:56 +0000 Subject: [PATCH] ci: bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/swift.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 257e0ed..881b4aa 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -18,7 +18,7 @@ jobs: name: Test (iOS & macOS) runs-on: macos-14 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Toolchain versions run: swift --version && xcodebuild -version @@ -56,7 +56,7 @@ jobs: name: Build (iOS device / min deployment target) runs-on: macos-14 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # Building for a generic iOS device (no simulator) compiles against the package's # declared minimum deployment target, catching availability-annotation mistakes and @@ -74,7 +74,7 @@ jobs: # Flip this to a required check once the codebase is clean against .swiftlint.yml. continue-on-error: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install SwiftLint run: brew install swiftlint @@ -89,7 +89,7 @@ jobs: # diagnostics show up in the log and as a warning annotation, but the check never fails # (the `|| echo` keeps it green). Resolve the warnings before adopting Swift 6 language mode. steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Build with complete concurrency checking (advisory) run: |