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
4 changes: 2 additions & 2 deletions .github/workflows/bump-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
pull-requests: write
steps:
- name: Checkout ${{ github.ref }}
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python ${{ env.default-python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.default-python }}
cache: "pip"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/create_tests_package_lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- os: windows-latest
python-version: "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand All @@ -30,7 +30,7 @@ jobs:
run:
nox --non-interactive --session create_test_package_list-${{ matrix.python-version }} -- ./new_tests_packages
- name: Store reports as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: lists-${{ matrix.os }}-${{ matrix.python-version }}
path: ./new_tests_packages
10 changes: 5 additions & 5 deletions .github/workflows/exhaustive_package_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
python-version: ["3.12", "3.11", "3.10", "3.9"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand All @@ -27,7 +27,7 @@ jobs:
continue-on-error: true
run: nox --non-interactive --session test_all_packages-${{ matrix.python-version }}
- name: Store reports as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: reports-raw-${{ matrix.os }}-${{ matrix.python-version }}
path: reports
Expand All @@ -39,7 +39,7 @@ jobs:

steps:
- name: Get report artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
pattern: reports-raw-*
merge-multiple: true
Expand All @@ -58,7 +58,7 @@ jobs:
cat all_packages_deps_errors_* > all_deps_errors_lf.txt
tr -d '\r' < all_deps_errors_lf.txt > reports/all_deps_errors.txt
- name: Store collated and raw reports as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: reports-final
path: reports
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Extract version to be released
id: get-version
env:
Expand Down Expand Up @@ -60,11 +60,11 @@ jobs:
id-token: write
steps:
- name: Checkout ${{ needs.create-tag.outputs.release-tag }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: "${{ needs.create-tag.outputs.release-tag }}"
- name: Set up Python ${{ env.default-python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.default-python }}
cache: "pip"
Expand All @@ -82,7 +82,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Create release
uses: softprops/action-gh-release@v2
with:
Expand All @@ -97,11 +97,11 @@ jobs:
contents: write
steps:
- name: Checkout ${{ needs.create-tag.outputs.release-tag }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: "${{ needs.create-tag.outputs.release-tag }}"
- name: Set up Python ${{ env.minimum-supported-python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.minimum-supported-python }}
cache: "pip"
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
python-version: "3.13"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand All @@ -50,9 +50,9 @@ jobs:
name: Build man page
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ env.default-python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.default-python }}
cache: "pip"
Expand All @@ -68,9 +68,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.ref }}
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python ${{ env.minimum-supported-python }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ env.minimum-supported-python }}
cache: "pip"
Expand All @@ -80,7 +80,7 @@ jobs:
run: nox --error-on-missing-interpreters --non-interactive --session zipapp
- name: Test zipapp by installing black
run: python ./pipx.pyz install black
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pipx.pyz
path: pipx.pyz
Expand Down