From 6cfbf680afc7455fdb3e2c6700ee3a427e94ece1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:07:06 +0000 Subject: [PATCH] Update actions/checkout action to v6 --- .github/workflows/ci-linux.yml | 2 +- .github/workflows/ci-macos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 4c46555..31d70dd 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -17,7 +17,7 @@ jobs: image: swift:${{ matrix.swift }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Test run: swift test --skip-update diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index f98376e..f61d3a7 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -15,7 +15,7 @@ jobs: xcode: ["13.4.1", "14.2"] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: Test