From 66a2b1a3e33bbab5c3dfe3387c8a6145a1f082de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 08:33:25 -0500 Subject: [PATCH] build(deps): bump actions/download-artifact from 3 to 4 (#6318) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64738b02d4e..eaa00636398 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,7 +106,7 @@ jobs: needs: build steps: - name: Download coverage reports - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: code-coverage-report - name: Run codacy-coverage-reporter @@ -137,7 +137,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven- - name: Download release build - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: archive-snapshot - name: Build Docker Image diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddded603e17..34bb6dcb68c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -113,7 +113,7 @@ jobs: needs: build steps: - name: Download coverage reports - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: code-coverage-report - name: Run codacy-coverage-reporter @@ -145,7 +145,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Download release build - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: archive-release - name: Build Docker Image @@ -172,7 +172,7 @@ jobs: VERSION=$( mvn help:evaluate -Dexpression=project.version -q -DforceStdout ) echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Download release build - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: archive-release - name: Create Release @@ -247,7 +247,7 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Download Site - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: archive-site path: target/staging