From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Mar 2022 11:12:59 +0000 (+0530) Subject: Bump actions/upload-artifact from 2.3.1 to 3.0.0 (#362) X-Git-Tag: v1.8.0~5 X-Git-Url: https://git.wafflesoft.org/?a=commitdiff_plain;h=22d8d5a0b8ff249191570fa8c90010ff29eade22;p=cinny.git Bump actions/upload-artifact from 2.3.1 to 3.0.0 (#362) * Bump actions/upload-artifact from 2.3.1 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Use exact version Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com> --- diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yml index 4b02042..2e199e3 100644 --- a/.github/workflows/build-pull-request.yml +++ b/.github/workflows/build-pull-request.yml @@ -14,7 +14,7 @@ jobs: - name: Build run: npm ci && npm run build - name: Upload Artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: previewbuild path: dist @@ -25,7 +25,7 @@ jobs: var fs = require('fs'); fs.writeFileSync('${{github.workspace}}/pr.json', JSON.stringify(context.payload.pull_request)); - name: Upload PR Info - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: pr.json path: pr.json