From 0c38fd1c88bafcfe7410e5a60c5f52e7b0eb9ea5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:30:37 +0000 Subject: [PATCH] Update actions/checkout action to v6 --- .github/workflows/ci-linux.yml | 2 +- .github/workflows/ci-macos.yml | 2 +- .github/workflows/ci-windows.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index 5b1fbba..f7daafd 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@v4 + uses: actions/checkout@v6 - name: Test run: swift test -c release --enable-xctest --parallel --xunit-output .build/xUnit-output.xml diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index bad7cea..39937d7 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -15,7 +15,7 @@ jobs: xcode: ["14.3.1", "15.4", "16.0"] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s '/Applications/Xcode_${{ matrix.xcode }}.app' diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index fe2cde7..b477f13 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -18,7 +18,7 @@ jobs: tag: 5.10-RELEASE - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Test run: swift test -c release --parallel --xunit-output .build/xUnit-output.xml