From 87c30d8410a2991d2ba27756c91e66bdda12d490 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 04:41:32 +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-db.yml | 4 ++-- .github/workflows/build-desktop.yml | 2 +- .github/workflows/build-docs.yml | 2 +- .github/workflows/build-graphql.yml | 2 +- .github/workflows/publish.yml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-db.yml b/.github/workflows/build-db.yml index 8471bfcc554..f02e63a1153 100644 --- a/.github/workflows/build-db.yml +++ b/.github/workflows/build-db.yml @@ -85,7 +85,7 @@ jobs: - name: Clone fiftyone uses: actions/checkout@v4 - name: Download fiftyone-db - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist-sdist path: downloads @@ -106,7 +106,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/db-v') steps: - name: Download - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: downloads - name: Install dependencies diff --git a/.github/workflows/build-desktop.yml b/.github/workflows/build-desktop.yml index ccd506b1747..e516ac1253a 100644 --- a/.github/workflows/build-desktop.yml +++ b/.github/workflows/build-desktop.yml @@ -83,7 +83,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/desktop-v') steps: - name: Download wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: downloads - name: Install dependencies diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 0cbdd962fa0..ae823483b6d 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Download docs - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: docs path: docs-download/ diff --git a/.github/workflows/build-graphql.yml b/.github/workflows/build-graphql.yml index e1a0c62142e..265bbd8c705 100644 --- a/.github/workflows/build-graphql.yml +++ b/.github/workflows/build-graphql.yml @@ -45,7 +45,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/db-v') steps: - name: Download wheels - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: downloads - name: Install dependencies diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6ebe4121e90..a93d1f2376e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: needs: [build, test] steps: - name: Download dist - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist/ @@ -48,7 +48,7 @@ jobs: - name: Clone fiftyone uses: actions/checkout@v4 - name: Download dist - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist