Skip to content

Commit 0555ca6

Browse files
authored
Update integration tests to use v4 of upload-artifact (#1367)
See https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ The docs at https://github.com/actions/upload-artifact/tree/v4/ suggest that name, path, and if-no-files-found are still present as options.
1 parent 6224a70 commit 0555ca6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# below, since that will delete the output files.
2525
- name: Upload screenshot-diffs.zip artifact
2626
if: ${{ always() && steps.test.outcome == 'failure' }}
27-
uses: actions/upload-artifact@v2
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: screenshot-diffs
3030
path: packages/lit-dev-tests/test-results/**/*.png
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Upload screenshot-goldens.zip artifact
3939
if: ${{ always() && steps.test.outcome == 'failure' }}
40-
uses: actions/upload-artifact@v2
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: screenshot-goldens
4343
path: packages/lit-dev-tests/src/playwright/**/**.png

0 commit comments

Comments
 (0)