From e924882a176220c7eb5dcc5eca5ca7c3389ecc69 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 17:53:08 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/swift-format.yml | 2 +- .github/workflows/swiftlint.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3609e4a..cafa7ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: xcode: ['26.0'] config: ['debug', 'release'] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: Print Swift version @@ -43,7 +43,7 @@ jobs: xcode: ['26.0'] config: ['debug', 'release'] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: Print Swift version @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest container: swift:6.2 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache Swift packages uses: actions/cache@v4 with: @@ -80,7 +80,7 @@ jobs: name: README Code Examples runs-on: macos-26 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Select Xcode run: sudo xcode-select -s /Applications/Xcode_26.0.app - name: Run README verification tests diff --git a/.github/workflows/swift-format.yml b/.github/workflows/swift-format.yml index ada5880..f2ca7e9 100644 --- a/.github/workflows/swift-format.yml +++ b/.github/workflows/swift-format.yml @@ -17,7 +17,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache swift-format id: cache-swift-format diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index ca6319f..e43c4e5 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -7,7 +7,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: SwiftLint run: swiftlint lint continue-on-error: true