From 308dde63ac431078f065655b876fde0e4c685d44 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 20:52:24 +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/ci.yml | 12 ++++++------ .github/workflows/documentation.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f94a795..7898c88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: name: Core build & test runs-on: macos-26 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Show toolchain run: swift --version - name: Assert the default trait set pulls no dependencies @@ -62,7 +62,7 @@ jobs: - { name: visionOS, sdk: xrsimulator, triple: arm64-apple-xros1.0-simulator } - { name: macOS, sdk: macosx, triple: arm64-apple-macosx12.0 } steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Build for ${{ matrix.name }} run: | swift build \ @@ -76,7 +76,7 @@ jobs: name: Providers against real SDKs runs-on: macos-26 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Cache SwiftPM artifacts uses: actions/cache@v4 @@ -111,7 +111,7 @@ jobs: name: DocC runs-on: macos-26 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: | xcodebuild docbuild \ -scheme AnalyticsSystem \ @@ -122,7 +122,7 @@ jobs: name: SwiftLint runs-on: macos-26 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: brew install swiftlint - run: swiftlint lint --strict @@ -130,7 +130,7 @@ jobs: name: CocoaPods lint runs-on: macos-26 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Lint the Core subspec # Only Core is linted here: the provider subspecs would each pull a full # vendor SDK from trunk, which turns a lint into a multi-minute download. diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 7692c7c..f5f7fe4 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -22,7 +22,7 @@ jobs: name: Build DocC runs-on: macos-26 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # Deliberately built with xcodebuild rather than swift-docc-plugin: the plugin # would appear in a default `swift package resolve`, and this package promises