Skip to content

Commit 31d7732

Browse files
committed
update actions
1 parent de38703 commit 31d7732

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/deploy_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
docs:
1313
runs-on: macos-latest # for the screenshots
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
18-
- uses: astral-sh/setup-uv@v6
18+
- uses: astral-sh/setup-uv@v7
1919
with:
2020
enable-cache: true
2121

.github/workflows/test_and_deploy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ jobs:
5858

5959

6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262
with:
6363
fetch-depth: 0
6464
fetch-tags: true
6565

6666
- name: 🐍 Set up Python ${{ matrix.python-version }}
67-
uses: astral-sh/setup-uv@v6
67+
uses: astral-sh/setup-uv@v7
6868
with:
6969
python-version: ${{ matrix.python-version }}
7070
enable-cache: true
@@ -95,7 +95,7 @@ jobs:
9595
update_existing: true
9696

9797
- name: Upload coverage
98-
uses: actions/upload-artifact@v4
98+
uses: actions/upload-artifact@v5
9999
with:
100100
name: covreport-${{ matrix.os }}-py${{ matrix.python-version }}-${{ matrix.add-group }}-${{ matrix.resolution }}
101101
path: ./.coverage*
@@ -113,12 +113,12 @@ jobs:
113113
os: [macos-latest]
114114

115115
steps:
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v6
117117
with:
118118
fetch-depth: 0
119119

120120
- name: 🐍 Set up Python ${{ matrix.python-version }}
121-
uses: astral-sh/setup-uv@v6
121+
uses: astral-sh/setup-uv@v7
122122
with:
123123
python-version: ${{ matrix.python-version }}
124124
enable-cache: true
@@ -128,7 +128,7 @@ jobs:
128128
run: uv run --no-dev --group pyqt6 coverage run -p -m pytest -v
129129

130130
- name: Upload coverage
131-
uses: actions/upload-artifact@v4
131+
uses: actions/upload-artifact@v5
132132
with:
133133
name: covreport-mindeps-${{ matrix.os }}-py${{ matrix.python-version }}
134134
path: ./.coverage*
@@ -169,7 +169,7 @@ jobs:
169169
needs: test
170170
runs-on: ubuntu-latest
171171
steps:
172-
- uses: actions/checkout@v4
172+
- uses: actions/checkout@v6
173173
with:
174174
fetch-depth: 0
175175
- uses: hynek/build-and-inspect-python-package@v2
@@ -184,7 +184,7 @@ jobs:
184184
contents: write
185185
steps:
186186
- name: Download built artifact to dist/
187-
uses: actions/download-artifact@v4
187+
uses: actions/download-artifact@v6
188188
with:
189189
name: Packages
190190
path: dist

0 commit comments

Comments
 (0)