Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dependency_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -36,9 +36,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 }}
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -48,7 +48,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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
os: [ubuntu-latest, macos-latest] # skip windows bc rundoc fails
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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,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'

Expand Down Expand Up @@ -56,7 +56,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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -38,9 +38,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 }}
Loading