From e068ab67e6ce7c7a3b4b692a7fbe87aa91bb5256 Mon Sep 17 00:00:00 2001 From: Gaurav Sheni Date: Thu, 28 May 2026 10:21:59 -0400 Subject: [PATCH] update versions for GH actions uses --- .github/workflows/dependency_checker.yml | 6 +++--- .github/workflows/docs.yml | 6 +++--- .github/workflows/end_to_end.yml | 8 ++++---- .github/workflows/lint.yml | 4 ++-- .github/workflows/minimum.yml | 4 ++-- .github/workflows/numerical.yml | 4 ++-- .github/workflows/prepare_release.yml | 6 +++--- .github/workflows/readme.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- .github/workflows/tutorials.yml | 4 ++-- .github/workflows/unit.yml | 8 ++++---- 11 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/dependency_checker.yml b/.github/workflows/dependency_checker.yml index 2c893a8e..64353c25 100644 --- a/.github/workflows/dependency_checker.yml +++ b/.github/workflows/dependency_checker.yml @@ -7,9 +7,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up latest Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: 'pyproject.toml' - name: Install dependencies @@ -19,7 +19,7 @@ jobs: make fix-lint - name: Create pull request id: cpr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GH_ACCESS_TOKEN }} commit-message: Update latest dependencies diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d0a90896..b98d851c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -9,9 +9,9 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up latest Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: 'pyproject.toml' - name: Build @@ -21,7 +21,7 @@ jobs: pip install -e .[dev] make docs - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{secrets.GITHUB_TOKEN}} publish_dir: docs/_build/html diff --git a/.github/workflows/end_to_end.yml b/.github/workflows/end_to_end.yml index b3c7b2bf..8334e132 100644 --- a/.github/workflows/end_to_end.yml +++ b/.github/workflows/end_to_end.yml @@ -18,9 +18,9 @@ jobs: - os: macos-latest python-version: '3.14' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -32,9 +32,9 @@ jobs: - if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.14 name: Upload integration codecov report - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v6 with: flags: integration - file: ${{ github.workspace }}/integration_cov.xml + files: ${{ github.workspace }}/integration_cov.xml fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 24a66e1e..d329a306 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,9 +13,9 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up latest Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: 'pyproject.toml' - name: Install dependencies diff --git a/.github/workflows/minimum.yml b/.github/workflows/minimum.yml index f207b04a..befc5c1e 100644 --- a/.github/workflows/minimum.yml +++ b/.github/workflows/minimum.yml @@ -22,9 +22,9 @@ jobs: - os: macos-latest python-version: '3.14' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/numerical.yml b/.github/workflows/numerical.yml index 0abfc42e..79f31658 100644 --- a/.github/workflows/numerical.yml +++ b/.github/workflows/numerical.yml @@ -22,9 +22,9 @@ jobs: - os: macos-latest python-version: '3.14' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index 5214a5cb..b313bc14 100644 --- a/.github/workflows/prepare_release.yml +++ b/.github/workflows/prepare_release.yml @@ -18,9 +18,9 @@ jobs: preparerelease: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up latest Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: 'pyproject.toml' @@ -44,7 +44,7 @@ jobs: - name: Create pull request id: cpr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GH_ACCESS_TOKEN }} commit-message: Prepare release for v${{ inputs.version }} diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index 4516672b..feab89c6 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -17,9 +17,9 @@ jobs: python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] os: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3159ced..6dc0e282 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,12 +25,12 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.candidate && 'main' || 'stable' }} - name: Set up latest Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: 'pyproject.toml' @@ -58,7 +58,7 @@ jobs: - name: Create pull request if: ${{ inputs.candidate && !inputs.test_pypi }} id: cpr - uses: peter-evans/create-pull-request@v4 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GH_ACCESS_TOKEN }} commit-message: bumpversion-candidate diff --git a/.github/workflows/tutorials.yml b/.github/workflows/tutorials.yml index 1d8241da..569475ab 100644 --- a/.github/workflows/tutorials.yml +++ b/.github/workflows/tutorials.yml @@ -16,9 +16,9 @@ jobs: matrix: python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install package and dependencies diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index d84bdc0c..6fcc96fc 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -22,9 +22,9 @@ jobs: - os: macos-latest python-version: '3.14' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -36,9 +36,9 @@ jobs: - if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.14 name: Upload unit codecov report - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v6 with: flags: unit - file: ${{ github.workspace }}/unit_cov.xml + files: ${{ github.workspace }}/unit_cov.xml fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }}