Skip to content

Commit 81e4125

Browse files
Update actions/upload-artifact action to v7.0.1 (#3296)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a9dd1cb commit 81e4125

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build-binaries.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
"${MODULE_NAME}" --help
6363
python -m "${MODULE_NAME}" --help
6464
- name: "Upload sdist"
65-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
65+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6666
with:
6767
name: wheels-sdist
6868
path: dist
@@ -88,7 +88,7 @@ jobs:
8888
target: x86_64
8989
args: --release --locked --out dist --compatibility pypi
9090
- name: "Upload wheels"
91-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
91+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9292
with:
9393
name: wheels-macos-x86_64
9494
path: dist
@@ -103,7 +103,7 @@ jobs:
103103
tar czvf $ARCHIVE_FILE $ARCHIVE_NAME
104104
shasum -a 256 $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
105105
- name: "Upload binary"
106-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
106+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
107107
with:
108108
name: artifacts-macos-x86_64
109109
path: |
@@ -136,7 +136,7 @@ jobs:
136136
ty --help
137137
python -m ty --help
138138
- name: "Upload wheels"
139-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
139+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
140140
with:
141141
name: wheels-aarch64-apple-darwin
142142
path: dist
@@ -151,7 +151,7 @@ jobs:
151151
tar czvf $ARCHIVE_FILE $ARCHIVE_NAME
152152
shasum -a 256 $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
153153
- name: "Upload binary"
154-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
154+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
155155
with:
156156
name: artifacts-aarch64-apple-darwin
157157
path: |
@@ -199,7 +199,7 @@ jobs:
199199
"${MODULE_NAME}" --help
200200
python -m "${MODULE_NAME}" --help
201201
- name: "Upload wheels"
202-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
202+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
203203
with:
204204
name: wheels-${{ matrix.platform.target }}
205205
path: dist
@@ -210,7 +210,7 @@ jobs:
210210
7z a $ARCHIVE_FILE ./ruff/target/${{ matrix.platform.target }}/release/ty.exe
211211
sha256sum $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
212212
- name: "Upload binary"
213-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
213+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
214214
with:
215215
name: artifacts-${{ matrix.platform.target }}
216216
path: |
@@ -251,7 +251,7 @@ jobs:
251251
"${MODULE_NAME}" --help
252252
python -m "${MODULE_NAME}" --help
253253
- name: "Upload wheels"
254-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
254+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
255255
with:
256256
name: wheels-${{ matrix.target }}
257257
path: dist
@@ -269,7 +269,7 @@ jobs:
269269
tar czvf $ARCHIVE_FILE $ARCHIVE_NAME
270270
shasum -a 256 $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
271271
- name: "Upload binary"
272-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
272+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
273273
with:
274274
name: artifacts-${{ matrix.target }}
275275
path: |
@@ -337,7 +337,7 @@ jobs:
337337
pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
338338
ty --help
339339
- name: "Upload wheels"
340-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
340+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
341341
with:
342342
name: wheels-${{ matrix.platform.target }}
343343
path: dist
@@ -355,7 +355,7 @@ jobs:
355355
tar czvf $ARCHIVE_FILE $ARCHIVE_NAME
356356
shasum -a 256 $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
357357
- name: "Upload binary"
358-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
358+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
359359
with:
360360
name: artifacts-${{ matrix.platform.target }}
361361
path: |
@@ -398,7 +398,7 @@ jobs:
398398
.venv/bin/${MODULE_NAME} --help;
399399
"
400400
- name: "Upload wheels"
401-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
401+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
402402
with:
403403
name: wheels-${{ matrix.target }}
404404
path: dist
@@ -416,7 +416,7 @@ jobs:
416416
tar czvf $ARCHIVE_FILE $ARCHIVE_NAME
417417
shasum -a 256 $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
418418
- name: "Upload binary"
419-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
419+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
420420
with:
421421
name: artifacts-${{ matrix.target }}
422422
path: |
@@ -466,7 +466,7 @@ jobs:
466466
.venv/bin/pip3 install ${{ env.PACKAGE_NAME }} --no-index --find-links dist/ --force-reinstall
467467
.venv/bin/${{ env.MODULE_NAME }} --help
468468
- name: "Upload wheels"
469-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
469+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
470470
with:
471471
name: wheels-${{ matrix.platform.target }}
472472
path: dist
@@ -484,7 +484,7 @@ jobs:
484484
tar czvf $ARCHIVE_FILE $ARCHIVE_NAME
485485
shasum -a 256 $ARCHIVE_FILE > $ARCHIVE_FILE.sha256
486486
- name: "Upload binary"
487-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
487+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
488488
with:
489489
name: artifacts-${{ matrix.platform.target }}
490490
path: |

.github/workflows/build-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
touch "/tmp/digests/${digest#sha256:}"
104104
105105
- name: Upload digests
106-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
106+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
107107
with:
108108
name: digests-${{ env.PLATFORM_TUPLE }}
109109
path: /tmp/digests/*

0 commit comments

Comments
 (0)