Skip to content

Commit da9c51c

Browse files
committed
More updates
1 parent 7056bdf commit da9c51c

9 files changed

+12
-12
lines changed

python-project-template/.github/workflows/pre-commit-ci.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: '{{ py.pref(python_versions) }}'
2424
- name: Install uv

python-project-template/.github/workflows/publish-to-pypi.yml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v6
2727
- name: Set up Python
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: '{{ py.pref(python_versions) }}'
3131
- name: Install dependencies

python-project-template/.github/workflows/smoke-test.yml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v6
2727
- name: Set up Python {% raw %}${{ matrix.python-version }}{% endraw %}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
3131
- name: Install uv
32-
uses: astral-sh/setup-uv@v5
32+
uses: astral-sh/setup-uv@v7
3333
- name: Install dependencies
3434
run: |
3535
sudo apt-get update

python-project-template/.github/workflows/testing-and-coverage.yml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v6
2323
- name: Set up Python {% raw %}${{ matrix.python-version }}{% endraw %}
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
2727
- name: Install uv
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v6
4646
- name: Set up Python {{ py.min(python_versions) }}
47-
uses: actions/setup-python@v5
47+
uses: actions/setup-python@v6
4848
with:
4949
python-version: '{{ py.min(python_versions) }}'
5050
- name: Install dependencies

python-project-template/.github/workflows/{% if include_benchmarks %}asv-main.yml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
working-directory: ${{env.WORKING_DIR}}
3131
steps:
3232
- name: Set up Python ${{env.PYTHON_VERSION}}
33-
uses: actions/setup-python@v5
33+
uses: actions/setup-python@v6
3434
with:
3535
python-version: ${{env.PYTHON_VERSION}}
3636
- name: Checkout main branch of the repository

python-project-template/.github/workflows/{% if include_benchmarks %}asv-nightly.yml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
working-directory: ${{env.WORKING_DIR}}
2727
steps:
2828
- name: Set up Python ${{env.PYTHON_VERSION}}
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{env.PYTHON_VERSION}}
3232
- name: Checkout main branch of the repository

python-project-template/.github/workflows/{% if include_benchmarks %}asv-pr.yml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
working-directory: ${{env.WORKING_DIR}}
3333
steps:
3434
- name: Set up Python ${{env.PYTHON_VERSION}}
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: ${{env.PYTHON_VERSION}}
3838
- name: Checkout PR branch of the repository

python-project-template/.github/workflows/{% if include_benchmarks %}publish-benchmarks-pr.yml{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
printf "Output:\n$(cat output)"
4040
printf "pr=$(cat pr)" >> $GITHUB_OUTPUT
4141
- name: Find benchmarks comment
42-
uses: peter-evans/find-comment@v3
42+
uses: peter-evans/find-comment@v4
4343
id: find-comment
4444
with:
4545
issue-number: ${{ steps.pr-info.outputs.pr }}
4646
comment-author: 'github-actions[bot]'
4747
body-includes: view all benchmarks
4848
- name: Create or update benchmarks comment
49-
uses: peter-evans/create-or-update-comment@v4
49+
uses: peter-evans/create-or-update-comment@v5
5050
with:
5151
comment-id: ${{ steps.find-comment.outputs.comment-id }}
5252
issue-number: ${{ steps.pr-info.outputs.pr }}

python-project-template/.github/workflows/{% if include_docs %}build-documentation.yml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v6
2424
- name: Set up Python {{ py.pref(python_versions) }}
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '{{ py.pref(python_versions) }}'
2828
- name: Install uv

0 commit comments

Comments
 (0)