diff --git a/.github/workflows/install_tests.yml b/.github/workflows/install_tests.yml index 9d0ae6b..cd7336e 100644 --- a/.github/workflows/install_tests.yml +++ b/.github/workflows/install_tests.yml @@ -14,7 +14,7 @@ jobs: python-version: ["3.10", "3.11", "3.12"] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/publish_stable.yml b/.github/workflows/publish_stable.yml index 90bc0c4..32bcd59 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: master 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 dcbf298..e6fb3c6 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@v4 + - 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@v4 + - 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@v4 + uses: actions/checkout@v6 with: ref: dev diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index d9c5017..f3c1dfa 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -37,7 +37,7 @@ jobs: python-version: ["3.10", "3.11", "3.12"] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: