From b79ac3137c0d4e54bb94e8d018c8892bc2c09192 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 16:43:09 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 6.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 6.0.2. - [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...v6.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07e31aa..7e0430e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,12 @@ jobs: - watchOS - tvOS steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - run: sudo xcode-select --switch /Applications/Xcode_16.4.app - run: xcodebuild -scheme MarkdownView -destination 'generic/platform=${{ matrix.os }}' build lint: runs-on: ubuntu-24.04-arm container: swift:latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - run: swift format lint -r -p -s . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a621a8d..993dbd1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v6.0.2 - run: gh release create ${{ github.ref_name }} --generate-notes env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}