Skip to content

Commit

Permalink
build(deps): bump actions/download-artifact from 3 to 4 (#6318)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 22, 2023
1 parent 172c910 commit 66a2b1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 66a2b1a

Please sign in to comment.