Skip to content

Commit 3907acb

Browse files
🦄 (deps): Bump actions/upload-artifact from 4.4.3 to 4.5.0 in the actions group (#203)
🦄 (deps): Bump actions/upload-artifact in the actions group Bumps the actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 4.4.3 to 4.5.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b4b15b8...6f51ac0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3f76160 commit 3907acb

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

‎.github/workflows/cd.yml‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Build source distribution
3535
run: pipx run build --sdist --outdir dist/
3636

37-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
37+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
3838
with:
3939
name: source_distribution
4040
path: dist
@@ -66,7 +66,7 @@ jobs:
6666
hugo env --logLevel debug
6767
6868
- name: Upload wheels
69-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
69+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
7070
with:
7171
name: wheels_windows_amd64
7272
path: ./wheelhouse/*.whl
@@ -106,7 +106,7 @@ jobs:
106106
CIBW_TEST_SKIP: "*-win_arm64"
107107

108108
- name: Upload wheels
109-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
109+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
110110
with:
111111
name: wheels_windows_arm64
112112
path: ./wheelhouse/*.whl
@@ -147,7 +147,7 @@ jobs:
147147
hugo env --logLevel debug
148148
149149
- name: Upload wheels
150-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
150+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
151151
with:
152152
name: wheels_windows_i686
153153
path: ./wheelhouse/*.whl
@@ -178,7 +178,7 @@ jobs:
178178
hugo env --logLevel debug
179179
180180
- name: Upload wheels
181-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
181+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
182182
with:
183183
name: wheels_linux_amd64
184184
path: ./wheelhouse/*.whl
@@ -214,7 +214,7 @@ jobs:
214214
hugo env --logLevel debug
215215
216216
- name: Upload wheels
217-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
217+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
218218
with:
219219
name: wheels_linux_aarch64
220220
path: ./wheelhouse/*.whl
@@ -250,7 +250,7 @@ jobs:
250250
hugo env --logLevel debug
251251
252252
- name: Upload wheels
253-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
253+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
254254
with:
255255
name: wheels_linux_s390x
256256
path: ./wheelhouse/*.whl
@@ -286,7 +286,7 @@ jobs:
286286
hugo env --logLevel debug
287287
288288
- name: Upload wheels
289-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
289+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
290290
with:
291291
name: wheels_linux_ppc64le
292292
path: ./wheelhouse/*.whl
@@ -314,7 +314,7 @@ jobs:
314314
hugo env --logLevel debug
315315
316316
- name: Upload wheels
317-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
317+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
318318
with:
319319
name: wheels_macos_x86_64
320320
path: ./wheelhouse/*.whl
@@ -342,7 +342,7 @@ jobs:
342342
hugo env --logLevel debug
343343
344344
- name: Upload wheels
345-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
345+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
346346
with:
347347
name: wheels_macos_arm64
348348
path: ./wheelhouse/*.whl

‎.github/workflows/ci.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ jobs:
231231
hugo env --logLevel debug
232232
233233
- name: Upload artifacts for debugging
234-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
234+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
235235
with:
236236
name: wheels_${{ matrix.runs-on }}_${{ matrix.architecture }}_py${{ matrix.python-version }}
237237
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)