From 918a0cd5ed012b207981f812a53f747f773f4032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rialland?= Date: Wed, 14 Jun 2023 11:58:05 +0200 Subject: [PATCH] Use latest container to avoids Cypress errors in parallel job --- .github/workflows/deploy.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 187506b54..8d6c13386 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -232,6 +232,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} runs-on: ubuntu-22.04 + container: cypress/browsers:latest # We need to specify always() https://github.com/actions/runner/issues/491 if: always() && needs.deploy-preview.result == 'success' needs: [deploy-context, deploy-preview] @@ -302,6 +303,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} runs-on: ubuntu-22.04 + container: cypress/browsers:latest # We need to specify always() https://github.com/actions/runner/issues/491 if: always() && needs.deploy-prod.result == 'success' needs: [deploy-context, deploy-prod]