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
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2

updates:
# Keep the versions of the third-party actions used in .github/workflows up to date.
# Without this they go stale silently, until the Node runtime they run on is retired and the
# workflows start failing on GitHub's schedule rather than on ours.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
# one PR for all of them, rather than one PR per action
actions:
patterns:
- "*"
commit-message:
prefix: "CI"
4 changes: 2 additions & 2 deletions .github/workflows/check_pypi_packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install Sphinx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
LICENSE.txt

# Publish to PyPI using Trusted Publishers
- uses: actions/checkout@v3
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ jobs:
strategy:
fail-fast: false
matrix:
# "3.x" means the newest released Python, so the latest version is always tested even if this
# list is not kept up to date. setup.py requires >= 3.10.
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]

steps:
- uses: actions/checkout@v7
# the runner image ships only one Python on PATH; this is what actually selects the version
# named by the matrix (all of 3.10-3.14 are in the runner's tool cache, so it is a fast lookup)
# named by the matrix
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down