From 952a07a6ccb5290f518ed6ce622f8598fc857edd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 03:03:08 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 3.1.2 to 4.3.1 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.2 to 4.3.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3.1.2...v4.3.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e17b8e08..175eb9e2 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -32,7 +32,7 @@ jobs: - name: Build run: npm run build - name: Upload build - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.3.1 with: name: build path: dist/* @@ -141,7 +141,7 @@ jobs: mv screenshots/*.png screenshots/dist/$aw_server/$aw_version - name: Upload screenshots if: ${{ success() || steps.e2e.conclusion == 'failure'}} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.3.1 with: name: screenshots path: screenshots/dist/* @@ -161,7 +161,7 @@ jobs: mv ~/.cache/activitywatch/log/*/*.log logs/dist/$aw_server/$aw_version - name: Upload logs if: ${{ always() }} - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4.3.1 with: name: logs path: logs/dist/*