From 095241517b46cf726f7e0747626f9270f35d113b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 12:21:08 +0200 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#3433) * Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Use latest v4 instead of a specific version * upgrade to `actions/upload-artifact@v4` --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cesar N. <11819101+cesnietor@users.noreply.github.com> Co-authored-by: Ramon de Klein --- .github/workflows/jobs.yaml | 8 ++++---- web-app/playwright/jobs.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/jobs.yaml b/.github/workflows/jobs.yaml index 9857f71f6..e9296aa4d 100644 --- a/.github/workflows/jobs.yaml +++ b/.github/workflows/jobs.yaml @@ -977,7 +977,7 @@ jobs: # To save our replication.out file into an artifact. # By default, GitHub stores build logs and artifacts for 90 days. - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: replication-artifact path: ./replication/coverage/replication.out @@ -1135,7 +1135,7 @@ jobs: key: ${{ runner.os }}-coverage-pkg-2-${{ github.run_id }} # Get the replication.out file from the artifact since this is working for self host runner. - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: replication-artifact path: replication/coverage @@ -1483,13 +1483,13 @@ jobs: npx nyc report # To see report printed in logs as text echo "npx nyc report --reporter=html" npx nyc report --reporter=html # to see report in ./coverage/index.html - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report path: playwright-report/ retention-days: 30 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: coverage diff --git a/web-app/playwright/jobs.yaml b/web-app/playwright/jobs.yaml index ba4b61f9c..ccaf2a143 100644 --- a/web-app/playwright/jobs.yaml +++ b/web-app/playwright/jobs.yaml @@ -213,13 +213,13 @@ jobs: npx nyc report # To see report printed in logs as text echo "npx nyc report --reporter=html" npx nyc report --reporter=html # to see report in ./coverage/index.html - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report path: playwright-report/ retention-days: 30 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: coverage