From 5b85d6803b9ef5de5c921f8dcbf6a9d0ee4deba8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 16:22:49 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/lint.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0b62f8..c958254 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_16.1.app/Contents/Developer steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: recursive - name: Build diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9433428..208361b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -28,7 +28,7 @@ jobs: build-mode: autobuild steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4f5008d..b5bf611 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: SwiftLint: runs-on: macos-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: irgaly/setup-mint@v1 - name: SwiftLint run: mint run swiftlint --strict @@ -21,7 +21,7 @@ jobs: runs-on: macos-latest needs: SwiftLint steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: irgaly/setup-mint@v1 - name: SwiftFormat Lint run: mint run swiftformat --lint . @@ -30,6 +30,6 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_16.1.app/Contents/Developer steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Swift-Docc Validate run: swift package generate-documentation --analyze --warnings-as-errors