You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -231,7 +231,7 @@ But, if you are uploading data that is easily compressed (like plaintext, code,
231
231
- name: Make a file with a lot of repeated text
232
232
run: |
233
233
for i in {1..100000}; do echo -n 'foobar' >> foobar.txt; done
234
-
- uses: actions/upload-artifact@v4
234
+
- uses: actions/upload-artifact@v7
235
235
with:
236
236
name: my-artifact
237
237
path: foobar.txt
@@ -243,7 +243,7 @@ But, if you are uploading data that is easily compressed (like plaintext, code,
243
243
If a path (or paths), result in no files being found for the artifact, the action will succeed but print out a warning. In certain scenarios it may be desirable to fail the action or suppress the warning. The `if-no-files-found` option allows you to customize the behavior of the action if no files are found:
244
244
245
245
```yaml
246
-
- uses: actions/upload-artifact@v4
246
+
- uses: actions/upload-artifact@v7
247
247
with:
248
248
name: my-artifact
249
249
path: path/to/artifact/
@@ -256,13 +256,13 @@ Unlike earlier versions of `upload-artifact`, uploading to the same artifact via
256
256
257
257
```yaml
258
258
- run: echo hi > world.txt
259
-
- uses: actions/upload-artifact@v4
259
+
- uses: actions/upload-artifact@v7
260
260
with:
261
261
# implicitly named as 'artifact'
262
262
path: world.txt
263
263
264
264
- run: echo howdy > extra-file.txt
265
-
- uses: actions/upload-artifact@v4
265
+
- uses: actions/upload-artifact@v7
266
266
with:
267
267
# also implicitly named as 'artifact', will fail here!
0 commit comments