Skip to content

Commit

Permalink
build(deps): bump actions/upload-artifact from 3 to 4 (#90)
Browse files Browse the repository at this point in the history
* build(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](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* silly

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Filip Skokan <panva.ip@gmail.com>
  • Loading branch information
dependabot[bot] and panva authored Dec 19, 2023
1 parent 9a0dfb2 commit 0a4ed6d
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,18 +168,21 @@ jobs:
PLAN_NAME: ${{ matrix.setup.plan }}
VARIANT: ${{ toJSON(matrix.setup.variant) }}
JWS_ALGORITHM: ${{ matrix.setup.algorithm }}
- if: ${{ success() }}
run: echo "### :tada:" >> $GITHUB_STEP_SUMMARY
- if: ${{ failure() }}
run: echo "### :exclamation:" >> $GITHUB_STEP_SUMMARY
- run: node ./conformance/.parse-logs.mjs capture.txt
- run: rm capture.txt
- name: Upload test artifacts
uses: actions/upload-artifact@v3
id: artifact-upload-step
uses: actions/upload-artifact@v4
with:
path: |
*.zip
*.txt
name: conformance results
name: conformance results idx(${{ strategy.job-index }})
if-no-files-found: error
if: ${{ always() }}
- if: ${{ success() }}
run: |
echo "### [:tada:](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }})" >> $GITHUB_STEP_SUMMARY
- if: ${{ failure() }}
run: |
echo "### [:exclamation:](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/${{ steps.artifact-upload-step.outputs.artifact-id }})" >> $GITHUB_STEP_SUMMARY

0 comments on commit 0a4ed6d

Please sign in to comment.