From 36d5b1b8963d98ebfae90e03f21bfdfcec351c55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Jul 2026 20:53:22 +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 | 6 +++--- .github/workflows/commit-lint.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56604bb..0dcd739 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest container: swift:6.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: swift --version - run: swift build - run: swift test @@ -24,7 +24,7 @@ jobs: name: Build & test (macOS) runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: swift --version - run: swift build -c release - run: swift test @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest container: swift:6.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Download shared conformance vectors run: | apt-get update -qq && apt-get install -y -qq curl diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 769a132..8085404 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -12,7 +12,7 @@ jobs: name: Conventional Commits runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Check commit subjects follow Conventional Commits