From 24ce8453efd8c9d50a7c7c23c8736299fbc6f6c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 10:17:03 -0600 Subject: [PATCH] Bump actions/download-artifact from 1.0.0 to 2.0.10 (#6299) * Bump actions/download-artifact from 1.0.0 to 2.0.10 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 1.0.0 to 2.0.10. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/18f0f591fbc635562c815484d73b6e8e3980482e...3be87be14a055c47b01d3bd88f8fe02320a9bb60) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kevin Leimkuhler Co-authored-by: Alex Leong --- .github/workflows/integration_tests.yml | 6 ++++-- .github/workflows/release.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index f6ff9f042..538703e7f 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -84,9 +84,10 @@ jobs: restore-keys: | ${{ runner.os }}-go- - name: Download image archives - uses: actions/download-artifact@18f0f591fbc635562c815484d73b6e8e3980482e + uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 with: name: image-archives + path: image-archives - name: Run CLI Integration tests run: | go test --failfast --mod=readonly ".\test\cli" --linkerd=$PWD\image-archives\linkerd-windows.exe --cli-tests -v @@ -128,9 +129,10 @@ jobs: . bin/_docker.sh echo "DOCKER_REGISTRY=cr.l5d.io/linkerd" >> $GITHUB_ENV - name: Download image archives - uses: actions/download-artifact@18f0f591fbc635562c815484d73b6e8e3980482e + uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 with: name: image-archives + path: image-archives - name: Load cli-bin image into local docker images run: docker load < image-archives/cli-bin.tar - name: Install CLI diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7505edc8a..e2e4f3c19 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,9 +83,10 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - name: Download image archives - uses: actions/download-artifact@18f0f591fbc635562c815484d73b6e8e3980482e + uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 with: name: image-archives + path: image-archives - name: Run CLI Integration tests run: go test --failfast --mod=readonly ".\test\cli" --linkerd=$PWD\image-archives\linkerd-windows.exe --cli-tests -v integration_tests: @@ -224,9 +225,10 @@ jobs: extract_release_notes NOTES.md - name: Download choco package if: startsWith(github.ref, 'refs/tags/stable') - uses: actions/download-artifact@18f0f591fbc635562c815484d73b6e8e3980482e + uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 with: name: choco + path: choco - name: Pull CLI binaries env: DOCKER_MULTIARCH: 1