mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 09:16:30 -05:00
fix(ci): adjust options for artifacts action v4
See: https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
6e42da2613
commit
d3318eb232
2 changed files with 4 additions and 0 deletions
3
.github/workflows/e2e-tests.yml
vendored
3
.github/workflows/e2e-tests.yml
vendored
|
@ -150,6 +150,7 @@ jobs:
|
|||
name: frontend-e2e-build
|
||||
retention-days: 1
|
||||
path: frontend-e2e-build.tar.zst
|
||||
overwrite: true
|
||||
|
||||
frontend-cypress:
|
||||
if: "(github.event_name == 'pull_request_target') == github.event.pull_request.head.repo.fork"
|
||||
|
@ -180,6 +181,8 @@ jobs:
|
|||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: frontend-e2e-build
|
||||
path: .
|
||||
merge-multiple: true
|
||||
|
||||
- name: Decompress build
|
||||
run: tar -xf frontend-e2e-build.tar.zst
|
||||
|
|
1
.github/workflows/scorecard.yml
vendored
1
.github/workflows/scorecard.yml
vendored
|
@ -57,6 +57,7 @@ jobs:
|
|||
name: SARIF file
|
||||
path: results.sarif
|
||||
retention-days: 5
|
||||
overwrite: true
|
||||
|
||||
# Upload the results to GitHub's code scanning dashboard.
|
||||
- name: "Upload to code-scanning"
|
||||
|
|
Loading…
Reference in a new issue