From 1795f85f1d7d4b94b82e023f01cba63993875359 Mon Sep 17 00:00:00 2001 From: Gregory Moore Date: Thu, 12 Sep 2024 20:50:29 -0700 Subject: [PATCH] Migrate to actions/upload-artifact@v4 --- .github/workflows/e2e.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 7921cfb7..87833fb5 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -33,10 +33,11 @@ jobs: run: script -e -c "docker compose exec testing pytest -m 'not periodic' --base-url http://jb-com --junitxml report.xml" - name: Save screenshots - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: screenshots path: screenshots/ + overwrite: true - name: Publish Test Report uses: dorny/test-reporter@v1