From 42abb79edc3c5468f3d19b8c3cca525b7343858c Mon Sep 17 00:00:00 2001 From: Vinicius Gubiani Ferreira Date: Mon, 3 Feb 2025 15:23:58 -0300 Subject: [PATCH 1/2] [NO-ISSUE] chore: Bump github actions version --- .github/workflows/failed-e2e-tests.yml | 6 +++--- .github/workflows/local-prod-e2e-tests.yml | 8 ++++---- .github/workflows/manual-e2e-tests.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/failed-e2e-tests.yml b/.github/workflows/failed-e2e-tests.yml index d2b7aa7e6..d14772c6d 100644 --- a/.github/workflows/failed-e2e-tests.yml +++ b/.github/workflows/failed-e2e-tests.yml @@ -39,7 +39,7 @@ 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 @@ -47,7 +47,7 @@ jobs: - name: Upload Cypress Screenshots Artifact if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cypress_screenshots path: cypress/screenshots @@ -55,7 +55,7 @@ jobs: - name: Upload Cypress Videos Artifact if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cypress_videos path: cypress/videos diff --git a/.github/workflows/local-prod-e2e-tests.yml b/.github/workflows/local-prod-e2e-tests.yml index 3b2bf2049..a0584cbe3 100644 --- a/.github/workflows/local-prod-e2e-tests.yml +++ b/.github/workflows/local-prod-e2e-tests.yml @@ -49,7 +49,7 @@ 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 @@ -57,7 +57,7 @@ jobs: - name: Upload Cypress Screenshots Artifact if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cypress_screenshots path: cypress/screenshots @@ -65,7 +65,7 @@ jobs: - name: Upload Cypress Videos Artifact if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cypress_videos path: cypress/videos @@ -73,7 +73,7 @@ jobs: - 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 diff --git a/.github/workflows/manual-e2e-tests.yml b/.github/workflows/manual-e2e-tests.yml index 0519bbf4c..d47a61290 100644 --- a/.github/workflows/manual-e2e-tests.yml +++ b/.github/workflows/manual-e2e-tests.yml @@ -42,7 +42,7 @@ 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 @@ -50,7 +50,7 @@ jobs: retention-days: 4 - name: Upload Manual Cypress Videos - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: cypress_videos From 945e5c6f5172aad02b6429b50d98a683a684fc55 Mon Sep 17 00:00:00 2001 From: Vinicius Gubiani Ferreira Date: Mon, 3 Feb 2025 15:37:05 -0300 Subject: [PATCH 2/2] fix incorrect file --- src/services/edge-node-services/v4/make-edge-node-base-url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/edge-node-services/v4/make-edge-node-base-url.js b/src/services/edge-node-services/v4/make-edge-node-base-url.js index d7bb91153..58ae974ae 100644 --- a/src/services/edge-node-services/v4/make-edge-node-base-url.js +++ b/src/services/edge-node-services/v4/make-edge-node-base-url.js @@ -1,4 +1,4 @@ export const makeEdgeNodeBaseUrl = () => { const version = 'v4' return `${version}/edge_orchestrator/edge_nodes` -} \ No newline at end of file +}