From 03af1366511016b5c035f8a765d90fb342968a47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jun 2023 11:30:18 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51ce52195..af1a94a08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: # - this is not for releases, but for quick testing during the dev # - action artifacts can be downloaded for 90 days, then are removed by github - name: Attach produced build to Github Action - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ipfs-webui_${{ github.sha }}-build path: build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae74a1659..861b01324 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: run: | ipfs dag export ${{ steps.ipfs.outputs.cid }} > ipfs-webui_${{ github.sha }}.car - name: Attach produced build to Github Action - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ipfs-webui_${{ github.sha }}.car path: ipfs-webui_${{ github.sha }}.car