diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c9ba1ba88..4891f6225 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,7 +16,7 @@ jobs: python-version: ["3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Need to clone everything for the git tags. fetch-depth: 0 @@ -83,7 +83,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Need to clone everything to embed the version. fetch-depth: 0 diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 69400af1d..35555ab51 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -10,7 +10,7 @@ jobs: build_sphinx_docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Need to clone everything to determine version from git. fetch-depth: 0 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f961c27a9..a4d85f589 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/do_not_merge.yaml b/.github/workflows/do_not_merge.yaml index fbed44956..9cc0af038 100644 --- a/.github/workflows/do_not_merge.yaml +++ b/.github/workflows/do_not_merge.yaml @@ -26,7 +26,7 @@ jobs: 'DO NOT MERGE'. Remove this commit from the branch before merging or change the commit summary." - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check requirements.txt for branches shell: bash diff --git a/.github/workflows/docstyle.yaml b/.github/workflows/docstyle.yaml index b6997759f..2ce6952d1 100644 --- a/.github/workflows/docstyle.yaml +++ b/.github/workflows/docstyle.yaml @@ -14,7 +14,7 @@ jobs: numpydoc: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6