From 2f8b56383c891e7b50c38f3528c35e28ed288aa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 May 2022 16:03:58 +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/napi.yml | 2 +- .github/workflows/ship.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82e5da8c..2ae36179 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,7 +74,7 @@ jobs: run: echo "::set-output name=name::three_em-${{ matrix.target }}-${{ github.ref == 'refs/heads/main' && 'canary' || 'dev' }}-$(git rev-parse --short HEAD)" - name: Upload ${{ github.ref == 'refs/heads/main' && 'Canary' || 'Dev' }} Builds - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.zip.outputs.name }} path: | diff --git a/.github/workflows/napi.yml b/.github/workflows/napi.yml index b79980ed..7d9a3a5d 100644 --- a/.github/workflows/napi.yml +++ b/.github/workflows/napi.yml @@ -122,7 +122,7 @@ jobs: run: ${{ matrix.build }} - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: bindings-${{ matrix.target }} path: ./js/napi/${{ env.APP_NAME }}.*.node diff --git a/.github/workflows/ship.yml b/.github/workflows/ship.yml index f730e7bf..0948b5e3 100644 --- a/.github/workflows/ship.yml +++ b/.github/workflows/ship.yml @@ -60,7 +60,7 @@ jobs: run: Compress-Archive -CompressionLevel Optimal -Force -Path ${{ steps.binary.outputs.path }}, README.md, LICENSE -DestinationPath three_em-${{ matrix.target }}.zip - name: Upload Release Builds - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: release path: three_em-${{ matrix.target }}.zip