Skip to content

Commit c1ed82f

Browse files
Bump actions/upload-artifact from 4 to 5 (#589)
1 parent a8f4163 commit c1ed82f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
# Store the docs as a build artifact so we can deploy it later
130130
- name: Upload HTML documentation as an artifact
131131
if: success()
132-
uses: actions/upload-artifact@v4
132+
uses: actions/upload-artifact@v5
133133
with:
134134
name: docs-${{ github.sha }}
135135
path: doc/_build/html

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- name: Upload archives as artifacts
8282
# Only if not a pull request
8383
if: success() && github.event_name != 'pull_request'
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v5
8585
with:
8686
name: pypi-${{ github.sha }}
8787
path: dist

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
run: coverage xml
151151

152152
- name: Upload coverage report as an artifact
153-
uses: actions/upload-artifact@v4
153+
uses: actions/upload-artifact@v5
154154
with:
155155
name: coverage_${{ matrix.os }}_${{ matrix.dependencies }}
156156
path: ./coverage.xml

0 commit comments

Comments
 (0)