From 4e916dde114f29650ddae71d89c627d4c0e60f04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 05:32:26 +0000 Subject: [PATCH] ci(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d03c0fe7..c5d85175 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,19 +50,19 @@ jobs: npm run test:example - name: Upload library build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: artifacts-ng-in-viewport path: dist/ng-in-viewport - name: Upload demo application build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: artifacts-demo path: dist/demo - name: Upload example application build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: artifacts-example path: dist/example @@ -103,14 +103,14 @@ jobs: headless: true - name: Upload failed screenshots - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: failed-e2e-${{ matrix.project }}-screenshots path: projects/${{ matrix.project }}-e2e/artifacts/screenshots - name: Upload failed videos - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: failed-e2e-${{ matrix.project }}-videos