Skip to content

Commit ee6358f

Browse files
Bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 352418b commit ee6358f

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
@@ -102,7 +102,7 @@ jobs:
102102
# Store the docs as a build artifact so we can deploy it later
103103
- name: Upload HTML documentation as an artifact
104104
if: success()
105-
uses: actions/upload-artifact@v6
105+
uses: actions/upload-artifact@v7
106106
with:
107107
name: docs-${{ github.sha }}
108108
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@v6
84+
uses: actions/upload-artifact@v7
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@v6
153+
uses: actions/upload-artifact@v7
154154
with:
155155
name: coverage_${{ matrix.os }}_${{ matrix.dependencies }}
156156
path: ./coverage.xml

0 commit comments

Comments
 (0)