Skip to content

Commit 7f5168b

Browse files
authored
Merge pull request #337 from bgilbert/actions
Bump artifact GitHub Actions and pre-commit
2 parents 4c2ca83 + 45a734b commit 7f5168b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,14 @@ jobs:
143143
run: python examples/deepzoom/deepzoom_tile.py --viewer -o tiled tests/fixtures/small.svs
144144
- name: Archive sdist
145145
if: matrix.sdist
146-
uses: actions/upload-artifact@v4
146+
uses: actions/upload-artifact@v5
147147
with:
148148
name: ${{ needs.pre-commit.outputs.dist-base }}-source
149149
path: artifacts/src
150150
compression-level: 0
151151
- name: Archive wheel
152152
if: env.archive_wheel
153-
uses: actions/upload-artifact@v4
153+
uses: actions/upload-artifact@v5
154154
with:
155155
name: ${{ needs.pre-commit.outputs.dist-base }}-${{ env.OS_ARCH_TAG }}-${{ matrix.python-version }}
156156
path: artifacts/whl
@@ -222,7 +222,7 @@ jobs:
222222
run: python examples/deepzoom/deepzoom_tile.py --viewer -o tiled tests/fixtures/small.svs
223223
- name: Archive wheel
224224
if: env.archive_wheel
225-
uses: actions/upload-artifact@v4
225+
uses: actions/upload-artifact@v5
226226
with:
227227
name: ${{ needs.pre-commit.outputs.dist-base }}-windows-x64-${{ matrix.python-version }}
228228
path: artifacts/whl
@@ -267,7 +267,7 @@ jobs:
267267
- name: Build
268268
run: sphinx-build -d doctrees doc artifact/${{ needs.pre-commit.outputs.docs-base }}
269269
- name: Archive
270-
uses: actions/upload-artifact@v4
270+
uses: actions/upload-artifact@v5
271271
with:
272272
name: ${{ needs.pre-commit.outputs.docs-base }}
273273
path: artifact
@@ -286,7 +286,7 @@ jobs:
286286
id-token: write
287287
steps:
288288
- name: Download artifacts
289-
uses: actions/download-artifact@v5
289+
uses: actions/download-artifact@v6
290290
with:
291291
pattern: "${{ needs.pre-commit.outputs.dist-base }}-*"
292292
merge-multiple: true

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ repos:
1616
- id: trailing-whitespace
1717

1818
- repo: https://github.com/asottile/pyupgrade
19-
rev: v3.20.0
19+
rev: v3.21.0
2020
hooks:
2121
- id: pyupgrade
2222
name: Modernize python code
2323
args: ["--py39-plus"]
2424

2525
- repo: https://github.com/PyCQA/isort
26-
rev: 6.1.0
26+
rev: 7.0.0
2727
hooks:
2828
- id: isort
2929
name: Reorder python imports with isort

0 commit comments

Comments
 (0)