From 07e69072624e2337511b4d5e5e9c333756b24852 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Dec 2025 15:02:32 +0000 Subject: [PATCH] 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 baa08f6..e0b2a26 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 d50bd5e..5521770 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 dd8e339..e0d0950 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