From c617c28fce1776f935be6ca887c749b3d733722a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:17:08 +0000 Subject: [PATCH] Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/package.yml | 6 +++--- .github/workflows/test.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 6e6903a4..184eae77 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -66,7 +66,7 @@ jobs: with: python-version: 3.9 - name: Download source distribution - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: dist path: dist @@ -94,7 +94,7 @@ jobs: with: python-version: 3.9 - name: Download wheel distribution - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: dist path: dist @@ -118,7 +118,7 @@ jobs: - test-wheel steps: - name: Download built distributions - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: dist path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4be9098a..a7b75a6f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -54,7 +54,7 @@ jobs: - name: Install coverage package run: python -m pip install -U coverage - name: Download partial coverage reports - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: coverage - name: Combine coverage