mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -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
|
name: frontend-e2e-build
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
path: frontend-e2e-build.tar.zst
|
path: frontend-e2e-build.tar.zst
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
frontend-cypress:
|
frontend-cypress:
|
||||||
if: "(github.event_name == 'pull_request_target') == github.event.pull_request.head.repo.fork"
|
if: "(github.event_name == 'pull_request_target') == github.event.pull_request.head.repo.fork"
|
||||||
|
@ -180,6 +181,8 @@ jobs:
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: frontend-e2e-build
|
name: frontend-e2e-build
|
||||||
|
path: .
|
||||||
|
merge-multiple: true
|
||||||
|
|
||||||
- name: Decompress build
|
- name: Decompress build
|
||||||
run: tar -xf frontend-e2e-build.tar.zst
|
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
|
name: SARIF file
|
||||||
path: results.sarif
|
path: results.sarif
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
# Upload the results to GitHub's code scanning dashboard.
|
# Upload the results to GitHub's code scanning dashboard.
|
||||||
- name: "Upload to code-scanning"
|
- name: "Upload to code-scanning"
|
||||||
|
|
Loading…
Reference in a new issue