From 29a526cefb2bb53269c2d7142955da1a82aa38b5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Dec 2025 17:01:01 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/build_tests.yml | 2 +- .github/workflows/publish_stable.yml | 4 ++-- .github/workflows/release_workflow.yml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index fa7e3de..7b57efd 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -7,7 +7,7 @@ jobs: build_tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} - name: Setup Python diff --git a/.github/workflows/publish_stable.yml b/.github/workflows/publish_stable.yml index 27468c2..a8bbfdc 100644 --- a/.github/workflows/publish_stable.yml +++ b/.github/workflows/publish_stable.yml @@ -19,7 +19,7 @@ jobs: if: success() # Ensure this job only runs if the previous job succeeds runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: ref: dev fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. @@ -47,7 +47,7 @@ jobs: if: success() # Ensure this job only runs if the previous job succeeds runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. ref: master diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index bfb6097..dbc21ab 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -23,7 +23,7 @@ jobs: needs: publish_alpha runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Send message to Matrix bots channel id: matrix-chat-message uses: fadenb/matrix-chat-message@v0.0.6 @@ -39,7 +39,7 @@ jobs: if: success() # Ensure this job only runs if the previous job succeeds runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 with: ref: dev fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. @@ -68,7 +68,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout dev branch - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: ref: dev