Skip to content

Commit 4206bc5

Browse files
Bump actions/upload-artifact from 4 to 5 (#104)
1 parent 14820e4 commit 4206bc5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
# Store the docs as a build artifact so we can deploy it later
139139
- name: Upload HTML documentation as an artifact
140140
if: github.event_name == 'release' || github.event_name == 'push'
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v5
142142
with:
143143
name: docs-${{ github.sha }}
144144
path: doc/_build/html

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Upload archives as artifacts
7474
# Only if not a pull request
7575
if: success() && github.event_name != 'pull_request'
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v5
7777
with:
7878
name: pypi-${{ github.sha }}
7979
path: dist

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
run: mv .coverage .coverage.${{ matrix.os }}_${{ matrix.python }}_${{ matrix.dependencies }}_${{ matrix.cached }}
146146

147147
- name: Upload coverage as artifact
148-
uses: actions/upload-artifact@v4
148+
uses: actions/upload-artifact@v5
149149
with:
150150
path: .coverage.*
151151
name: coverage_${{ matrix.os }}_${{ matrix.python }}_${{ matrix.dependencies }}_${{ matrix.cached }}
@@ -207,7 +207,7 @@ jobs:
207207
run: python -m coverage report --fail-under=100
208208

209209
- name: Upload HTML report if check failed
210-
uses: actions/upload-artifact@v4
210+
uses: actions/upload-artifact@v5
211211
with:
212212
name: html-report
213213
path: htmlcov

0 commit comments

Comments
 (0)