From 5e68ef123c913da1b1dd45fa56ac308099a4efd6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 20:01:45 +0530 Subject: [PATCH] Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows (#323) * Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 1 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v1...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Update main.yml Update version of upload-artifact to 4.4.0 * Update main.yml --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Wiebe --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2e0c8d5cc..4a111a323 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,10 +38,11 @@ jobs: run: ansible-galaxy collection build --output-path "${GITHUB_WORKSPACE}/.cache/collection-tarballs" - name: Store migrated collection artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4.4.0 with: name: collection path: .cache/collection-tarballs + overwrite: true sanity: @@ -66,7 +67,7 @@ jobs: run: pip install https://github.com/ansible/ansible/archive/v${{ matrix.ansible }}.tar.gz --disable-pip-version-check - name: Download migrated collection artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4.1.7 with: name: collection path: .cache/collection-tarballs @@ -103,7 +104,7 @@ jobs: run: pip install pytest==7.4.4 - name: Download migrated collection artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4.1.7 with: name: collection path: .cache/collection-tarballs