From 4523e717e8d00046719c0287dc74c699d6bcecdc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:40:03 +0000 Subject: [PATCH] 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] --- .github/workflows/performance-test.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/performance-test.yml b/.github/workflows/performance-test.yml index 31973ef9d..e8b908a42 100644 --- a/.github/workflows/performance-test.yml +++ b/.github/workflows/performance-test.yml @@ -30,7 +30,7 @@ jobs: mkdir dependencies - name: Download uber-jar id: download-jar - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: ${{ needs.build.outputs.uber-jar }} path: dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c51f547bf..4faa50464 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,11 +22,11 @@ jobs: with: ref: ${{ github.event.release.tag_name || github.event.inputs.tag_name}} - name: Download uber-jar - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: ${{ needs.build.outputs.uber-jar }} - name: Download sources-jar - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: ${{ needs.build.outputs.sources-jar }} - uses: xresloader/upload-to-github-release@v1