From 56118220a0e90b21eb9b52340d8283de367e0078 Mon Sep 17 00:00:00 2001 From: Dhenain Ambroise Date: Sat, 29 May 2021 02:19:17 +0200 Subject: [PATCH] Fix attempt damn bash x4 --- .github/workflows/deploy-vercel-production.yml | 3 +-- .github/workflows/deploy-vercel-staging.yml | 3 +-- .github/workflows/deploy-vercel-storybook.yml | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-vercel-production.yml b/.github/workflows/deploy-vercel-production.yml index ea825ab4..41686f03 100644 --- a/.github/workflows/deploy-vercel-production.yml +++ b/.github/workflows/deploy-vercel-production.yml @@ -72,7 +72,6 @@ on: env: STAGE: production - CYPRESS_DOCKER_VERSION: '7.4.0' # Should match the version installed in package.json jobs: # Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs @@ -270,7 +269,7 @@ jobs: runs-on: ubuntu-18.04 # Docker image with Cypress pre-installed # https://github.com/cypress-io/cypress-docker-images/tree/master/included - container: "cypress/included:${{ env.CYPRESS_DOCKER_VERSION }}" + container: cypress/included:7.4.0 needs: await-for-vercel-deployment timeout-minutes: 20 # Limit current job timeout https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes steps: diff --git a/.github/workflows/deploy-vercel-staging.yml b/.github/workflows/deploy-vercel-staging.yml index e15d81f5..ac18e527 100644 --- a/.github/workflows/deploy-vercel-staging.yml +++ b/.github/workflows/deploy-vercel-staging.yml @@ -72,7 +72,6 @@ on: env: STAGE: staging - CYPRESS_DOCKER_VERSION: 7.4.0 # Should match the version installed in package.json jobs: # Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs @@ -318,7 +317,7 @@ jobs: runs-on: ubuntu-18.04 # Docker image with Cypress pre-installed # https://github.com/cypress-io/cypress-docker-images/tree/master/included - container: ${{ env.CYPRESS_DOCKER_VERSION }} + container: cypress/included:7.4.0 needs: await-for-vercel-deployment timeout-minutes: 20 # Limit current job timeout https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idtimeout-minutes steps: diff --git a/.github/workflows/deploy-vercel-storybook.yml b/.github/workflows/deploy-vercel-storybook.yml index 57a04d37..44c2119a 100644 --- a/.github/workflows/deploy-vercel-storybook.yml +++ b/.github/workflows/deploy-vercel-storybook.yml @@ -52,7 +52,6 @@ on: env: STAGE: staging - CYPRESS_DOCKER_VERSION: '7.4.0' # Should match the version installed in package.json jobs: # Configures the deployment environment, install dependencies (like node, npm, etc.) that are requirements for the upcoming jobs @@ -193,7 +192,7 @@ jobs: runs-on: ubuntu-18.04 # Docker image with Cypress pre-installed # https://github.com/cypress-io/cypress-docker-images/tree/master/included - container: "cypress/included:${{ env.CYPRESS_DOCKER_VERSION }}" + container: cypress/included:7.4.0 needs: await-for-vercel-deployment steps: - uses: actions/checkout@v1 # Get last commit pushed - See https://github.com/actions/checkout