Skip to content

Commit

Permalink
chore(deps): update github actions all dependencies to v4 (#755)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 9, 2024
1 parent 4fe5ab0 commit 573c3c8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cypress-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
CYPRESS_PASSWORD: ${{ secrets.BCEID_PASSWORD }}

- name: Upload screenshots on failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots-chrome
path: cypress/screenshots

- name: Upload videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos-chrome
Expand All @@ -57,14 +57,14 @@ jobs:
CYPRESS_PASSWORD: ${{ secrets.BCEID_PASSWORD }}

- name: Upload screenshots on failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots-firefox
path: cypress/screenshots

- name: Upload videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos-firefox
Expand All @@ -86,14 +86,14 @@ jobs:
CYPRESS_PASSWORD: ${{ secrets.BCEID_PASSWORD }}

- name: Upload screenshots on failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots-edge
path: cypress/screenshots

- name: Upload videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos-edge
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
languages: java,javascript

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@ jobs:
-Dsonar.test.inclusions=cypress/e2e/smoke-test/**/*
sonar_token: ${{ secrets.SONAR_FRONTEND }}
- name: Upload videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos-chrome
path: /home/runner/work/nr-spar/nr-spar/frontend/cypress/videos/
- name: Upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: cypress-coverage
Expand Down

0 comments on commit 573c3c8

Please sign in to comment.