Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
dependabot[bot] authored Dec 14, 2023
1 parent c92735b commit 5d25e99
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_playwright-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
npm run test:"$test_target" -- --project ${{ inputs.browser }} --repeat-each ${{ inputs.runs}}
working-directory: ./frontend
- name: Upload screenshots and traces of failed tests
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: failed-${{ inputs.mode }}-tests-${{ inputs.browser }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
arguments: build --profile -x integrationTest -x test
build-root-directory: ./backend
- name: Upload build performance report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: performance-report
path: backend/build/reports/profile/profile*.html
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
format: "cosign-vuln"
output: "vuln-backend.json"
- name: Upload cosign vulnerability scan record
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "vuln-backend.json"
path: "vuln-backend.json"
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
working-directory: ./backend
run: ./gradlew checkLicense
- name: Upload licence report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: licence-reports
retention-days: 3
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
run: npm run audit:licences
working-directory: ./frontend
- name: Upload licence report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: licence-reports
retention-days: 3
Expand Down Expand Up @@ -374,7 +374,7 @@ jobs:
format: "cosign-vuln"
output: "vuln-frontend.json"
- name: Upload cosign vulnerability scan record
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "vuln-frontend.json"
path: "vuln-frontend.json"
Expand Down Expand Up @@ -866,7 +866,7 @@ jobs:
flags: --debug
version: 0.9.0
- name: Upload mermaid ER-diagram
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: erdiagram
retention-days: 3
Expand All @@ -892,7 +892,7 @@ jobs:
working-directory: ./backend
run: ./gradlew dokkaHtml
- name: Upload documentation
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: backend-code-documentation
retention-days: 3
Expand Down

0 comments on commit 5d25e99

Please sign in to comment.