From 3c6659f146eba6bb3939ad2dab8ce9e8487753ac Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 14:52:40 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/main.yml | 2 +- .github/workflows/pr.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 23f195e87c..8f2a4a031f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Node.js uses: actions/setup-node@v6 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2352c79686..10559fac11 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -62,7 +62,7 @@ jobs: pull-requests: write steps: - name: Checkout PR branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ github.event.action != 'closed' }} with: repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -70,7 +70,7 @@ jobs: persist-credentials: false - name: Checkout base branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ github.event.action == 'closed' }} with: repository: ${{ github.event.pull_request.base.repo.full_name }}