Skip to content
Open
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/base_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
checks: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Install, build, and upload your site
uses: withastro/action@74d664f13f9f9063e37b49d74a74613dbf94db3c # v4
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/fork_pr_benchmarks_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
name: Run Fork PR Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# begin: Use source sedpack package
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
Expand All @@ -34,7 +34,7 @@ jobs:
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Use cached venv or create it
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
id: cache
with:
path: ${{ steps.pip-cache.outputs.dir }}
Expand All @@ -55,7 +55,7 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
- name: Save cache
id: cache-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ steps.cache.outputs.cache-primary-key }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/maturin_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- runner: ubuntu-latest
target: ppc64le
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: 3.x
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- runner: ubuntu-latest
target: armv7
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: 3.x
Expand All @@ -103,7 +103,7 @@ jobs:
- runner: windows-latest
target: x86
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: 3.x
Expand All @@ -129,7 +129,7 @@ jobs:
- runner: macos-14
target: aarch64
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: 3.x
Expand All @@ -148,7 +148,7 @@ jobs:
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Build sdist
uses: PyO3/maturin-action@e10f6c464b90acceb5f640d31beda6d586ba7b4a # v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mdlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: DavidAnson/markdownlint-cli2-action@ce4853d43830c74c1753b39f3cf40f71c2031eb9 # v20
with:
config: .markdownlint.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
mypy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
Expand All @@ -32,7 +32,7 @@ jobs:
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Use cached venv or create it
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
id: cache
with:
path: ${{ steps.pip-cache.outputs.dir }}
Expand All @@ -47,7 +47,7 @@ jobs:
pip install --editable ".[dev]"
- name: Save cache
id: cache-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ steps.cache.outputs.cache-primary-key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/piptest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- runner: macos-15-intel # Intel
- runner: macos-latest # arm64
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
copyright_header:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Check licence headers
run: ./tools/check_copyright.sh

Expand All @@ -29,7 +29,7 @@ jobs:
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- runner: macos-latest # arm64
if: github.event_name != 'schedule'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
Expand All @@ -44,7 +44,7 @@ jobs:
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Use cached venv or create it
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
id: cache
with:
path: ${{ steps.pip-cache.outputs.dir }}
Expand All @@ -65,7 +65,7 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
- name: Save cache
id: cache-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ steps.cache.outputs.cache-primary-key }}
Expand All @@ -78,7 +78,7 @@ jobs:
coverage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
Expand All @@ -90,7 +90,7 @@ jobs:
run: |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Use cached venv or create it
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
id: cache
with:
path: ${{ steps.pip-cache.outputs.dir }}
Expand All @@ -103,7 +103,7 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
- name: Save cache
id: cache-save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ steps.cache.outputs.cache-primary-key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
working-directory: ./rust
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
# Ensure rustfmt is installed and setup problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1
with:
Expand All @@ -32,7 +32,7 @@ jobs:
working-directory: ./rust
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
# Ensure clippy is installed and setup problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout the code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# We need all history to list all changed files.
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yapf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
yapf:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
Expand Down
Loading