Skip to content

Commit

Permalink
[NO-ISSUE] chore: Bump github actions version (#2119)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinigfer authored Feb 3, 2025
1 parent b201da6 commit c5618ff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/failed-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,23 +39,23 @@ jobs:
- name: Upload E2E Coverage Report Artifact
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_e2e_report
path: coverage.zip
retention-days: 7

- name: Upload Cypress Screenshots Artifact
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cypress_screenshots
path: cypress/screenshots
retention-days: 4

- name: Upload Cypress Videos Artifact
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cypress_videos
path: cypress/videos
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/local-prod-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,31 +49,31 @@ jobs:
- name: Upload E2E Coverage Report Artifact
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_e2e_report
path: coverage.zip
retention-days: 7

- name: Upload Cypress Screenshots Artifact
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cypress_screenshots
path: cypress/screenshots
retention-days: 4

- name: Upload Cypress Videos Artifact
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cypress_videos
path: cypress/videos
retention-days: 1

- name: Notify test completion in Slack
if: ${{ always() && github.event_name == 'schedule' && env.SLACK_WEBHOOK_URL != ''}}
uses: 8398a7/action-slack@v3
uses: 8398a7/action-slack@v4
with:
status: ${{ job.status }}
job_name: Run Local Prod E2E Tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ jobs:
env: environment=${{ github.event.inputs.environmentName }}

- name: Upload Manual Cypress Screenshots
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: cypress_screenshots
path: cypress/screenshots
retention-days: 4

- name: Upload Manual Cypress Videos
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: cypress_videos
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const makeEdgeNodeBaseUrl = () => {
const version = 'v4'
return `${version}/edge_orchestrator/edge_nodes`
}
}

0 comments on commit c5618ff

Please sign in to comment.