From 10c134db29cbe165c2e8e5030db7d3b5d1ec13e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 04:08:04 +0000 Subject: [PATCH] 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/release-build.yml | 4 ++-- .github/workflows/swiftlint.yml | 2 +- .github/workflows/xcodebuild.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 46c01e6..1b2ffb5 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -14,7 +14,7 @@ jobs: TAG: ${{ github.ref_name }} GH_TOKEN: ${{ github.token }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build executable run: | swift build \ @@ -46,7 +46,7 @@ jobs: SHA256: ${{ needs.release-build.outputs.sha }} steps: - name: Checkout FelixHerrmann/homebrew-tap - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'FelixHerrmann/homebrew-tap' - name: Update Formula diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index 0399de4..ef7ecd7 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -24,7 +24,7 @@ jobs: name: SwiftLint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: norio-nomura/action-swiftlint@3.2.1 with: args: --strict diff --git a/.github/workflows/xcodebuild.yml b/.github/workflows/xcodebuild.yml index e0ee243..2edf205 100644 --- a/.github/workflows/xcodebuild.yml +++ b/.github/workflows/xcodebuild.yml @@ -37,7 +37,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Build Scheme run: | xcodebuild \ @@ -52,7 +52,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install Tuist run: brew install tuist - name: Run tests