From 1845de17f7fe1475456f555a8ee69c05dfb3c45f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:34:15 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/_build-packages.yml | 2 +- .github/workflows/ci-pkg-install.yml | 2 +- .github/workflows/docs-build.yml | 2 +- .github/workflows/release-pkg.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_build-packages.yml b/.github/workflows/_build-packages.yml index cb58031805803..56416ddac837d 100644 --- a/.github/workflows/_build-packages.yml +++ b/.github/workflows/_build-packages.yml @@ -43,7 +43,7 @@ jobs: pkg-name: ${{ fromJSON(inputs.pkg-names) }} steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ inputs.artifact-name }} path: pypi diff --git a/.github/workflows/ci-pkg-install.yml b/.github/workflows/ci-pkg-install.yml index c73d6adf5d3cd..fe061adc3d3df 100644 --- a/.github/workflows/ci-pkg-install.yml +++ b/.github/workflows/ci-pkg-install.yml @@ -56,7 +56,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist-packages-${{ github.sha }} path: dist diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 6e535f2ea3866..4c882cb6d00d1 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -144,7 +144,7 @@ jobs: # use input if dispatch or git tag VERSION: ${{ inputs.version || github.ref_name }} steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: docs-${{ matrix.pkg-name }}-${{ github.sha }} path: docs/build/html/ diff --git a/.github/workflows/release-pkg.yml b/.github/workflows/release-pkg.yml index fe3400a6f4ca3..042055a1608b3 100644 --- a/.github/workflows/release-pkg.yml +++ b/.github/workflows/release-pkg.yml @@ -37,7 +37,7 @@ jobs: if: github.event_name == 'release' steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist-packages-${{ github.sha }} path: dist @@ -167,7 +167,7 @@ jobs: name: ["APP", "FABRIC", "PYTORCH", "LIGHTNING"] steps: - uses: actions/checkout@v4 # needed for local action below - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist-packages-${{ github.sha }} path: dist @@ -192,7 +192,7 @@ jobs: name: ["APP", "FABRIC", "PYTORCH", "LIGHTNING"] steps: - uses: actions/checkout@v4 # needed for local action below - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: dist-packages-${{ github.sha }} path: dist