Skip to content

Commit d21b115

Browse files
Bump actions/upload-artifact from 4 to 5 (#148)
1 parent abe9e6c commit d21b115

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
@@ -111,7 +111,7 @@ jobs:
111111

112112
# Store the docs as a build artifact so we can deploy it later
113113
- name: Upload HTML documentation as an artifact
114-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v5
115115
with:
116116
name: docs-${{ github.sha }}
117117
path: doc/_build/html

.github/workflows/pypi.yml

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

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
run: coverage xml
134134

135135
- name: Upload coverage as artifact
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v5
137137
with:
138138
name: coverage_${{ matrix.os }}_${{ matrix.dependencies }}
139139
path: ./coverage.xml

0 commit comments

Comments
 (0)