From bf3edb215e147592e5718204348cd20056bfcde0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:01:56 +0000 Subject: [PATCH] Bump actions/download-artifact from 1.0.0 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 1.0.0 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v1.0.0...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-trigger-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-trigger-deploy.yml b/.github/workflows/build-and-trigger-deploy.yml index 322b798..a78400c 100644 --- a/.github/workflows/build-and-trigger-deploy.yml +++ b/.github/workflows/build-and-trigger-deploy.yml @@ -25,7 +25,7 @@ jobs: needs: version-stamp steps: - uses: actions/checkout@v1 - - uses: actions/download-artifact@v1.0.0 + - uses: actions/download-artifact@v4.1.7 with: { name: version } - name: Build Docker image run: > @@ -39,9 +39,9 @@ jobs: runs-on: ubuntu-latest needs: [version-stamp, docker-image-amd64] steps: - - uses: actions/download-artifact@v1.0.0 + - uses: actions/download-artifact@v4.1.7 with: { name: version } - - uses: actions/download-artifact@v1.0.0 + - uses: actions/download-artifact@v4.1.7 with: { name: docker-image-amd64 } - name: Configure Docker client / login run: >