Skip to content

Commit a6ce3b8

Browse files
Bump actions/upload-artifact from 4.6.0 to 4.6.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.0 to 4.6.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.0...4cec3d8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4a1e789 commit a6ce3b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/CI.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
9696
- name: "Upload coverage data to GH artifacts 📤"
9797
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest' && matrix.sphinx-version == 'dev'
98-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
98+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
9999
with:
100100
name: coverage-data-${{ matrix.python-version }}
101101
path: .coverage
@@ -143,7 +143,7 @@ jobs:
143143
python -Im coverage report --fail-under=80
144144
145145
- name: "Upload HTML report if check failed 📤"
146-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
146+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
147147
with:
148148
name: html-report
149149
path: htmlcov
@@ -157,7 +157,7 @@ jobs:
157157
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
158158

159159
- name: "Store Pull Request comment to be posted 📤"
160-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
160+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
161161
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
162162
with:
163163
# leave default names
@@ -185,7 +185,7 @@ jobs:
185185
continue-on-error: true
186186

187187
- name: "Upload profiling data to GH artifacts 📤"
188-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
188+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
189189
with:
190190
name: profile-results
191191
path: docbuild_profile.svg

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
run: python -Im tox run -e docs-linkcheck
135135

136136
- name: "Upload file with broken links 📤"
137-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
137+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
138138
with:
139139
name: broken-links
140140
path: docs/_build/linkcheck/output.txt

0 commit comments

Comments
 (0)