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
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Check out the main branch
uses: actions/checkout@v4
uses: actions/checkout@v6
# We need a full clone rather than a shallow clone so that setuptools-scm
# can compute the right version number for the docs.
# xref: https://github.com/pypa/setuptools_scm/issues/431
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
python-version: '3.10'
- name: Check out the target commit
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install necessary Python packages
run: |
python -m pip install -r style-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-on-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Check out the release commit
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out the target commit
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install Linux packages for PySide6 support
run: |
sudo apt-get update
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:

steps:
- name: Check out the target commit
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install Linux packages for wx support
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
python-version: '3.10'
- name: Check out the target commit
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install local package and documentation dependencies
run: |
python -m pip install -r docs/requirements.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly-scheduled-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Check out the target commit
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -44,7 +44,7 @@ jobs:

steps:
- name: Check out the main branch
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install Linux packages for PySide6 support
run: |
sudo apt-get update
Expand Down
Loading