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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
name: Build distribution files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.11'

Expand All @@ -25,7 +25,7 @@ jobs:
run: python -m build --wheel .

- name: Upload dist files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist-sdist
path: dist/*
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
# unpacks all dist artifacts into dist/
pattern: dist-*
Expand All @@ -61,7 +61,7 @@ jobs:
if: always() && !failure() && !cancelled() && startsWith(github.ref, 'refs/tags')

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
# unpacks all dist artifacts into dist/
pattern: dist-*
Expand All @@ -73,4 +73,4 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: dist/
packages-dir: dist/
6 changes: 3 additions & 3 deletions .github/workflows/run-docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
python: "3.10"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}

- name: Setup Pip Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .pip-cache
key: ${{ runner.os }}-py-${{ matrix.python }}-pip-${{ hashFiles('setup.*', '.github/workflows/run-docs-build.yml') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ jobs:
test-env: "PyQt6~=6.11.0 PyQt6-Qt6~=6.11.0 PyQt6-WebEngine~=6.11.0 PyQt6-WebEngine-Qt6~=6.11.0"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -117,7 +117,7 @@ jobs:
sudo apt-get install -y $UBUNTU_SYSTEM_PACKAGES $PACKAGES

- name: Setup Pip Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .pip-cache
key: ${{ runner.os }}-py-${{ matrix.python-version }}-pip-${{ hashFiles('setup.*', '.github/workflows/run-tests-workflow.yml') }}
Expand Down Expand Up @@ -153,6 +153,6 @@ jobs:
coverage xml

- name: Upload Coverage
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
Loading