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 a1cfbb4..943bbad 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 15004d3..f1b1f25 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