From bdaafe8a35aaef0ac14ca9a836187cbdad616666 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 07:49:14 +0000 Subject: [PATCH] Update actions/checkout action to v6 --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/testing.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1e6cad..111ab15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,13 +16,13 @@ jobs: steps: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a82359..3349e88 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code base - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index d790f3f..46dbf30 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -39,13 +39,13 @@ jobs: - name: Check out code base if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Check out code base if: github.event_name == 'pull_request' - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }}