From 62c6af33c604f506d1f5eded450470c513acbb28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jul 2023 14:20:10 +0000 Subject: [PATCH] Bump actions/download-artifact from 2 to 3 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 3. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 4 ++-- .github/workflows/pull-request.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ed62347..10fa385 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -112,7 +112,7 @@ jobs: uses: actions/checkout@v3 - name: Download tests results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: test-results @@ -136,7 +136,7 @@ jobs: if: always() steps: - name: Download tests results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: test-results diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index cc64d77..8176527 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -117,7 +117,7 @@ jobs: uses: actions/checkout@v3 - name: Download tests results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: test-results @@ -139,7 +139,7 @@ jobs: if: ${{ always() && github.actor != 'dependabot[bot]' }} steps: - name: Download tests results - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: test-results