diff --git a/.github/workflows/cd-beta.yaml b/.github/workflows/cd-beta.yaml index 604c85119..90787c594 100644 --- a/.github/workflows/cd-beta.yaml +++ b/.github/workflows/cd-beta.yaml @@ -35,7 +35,7 @@ jobs: # with: # project_id: zesty-prod # - name: Set up Node - # uses: actions/setup-node@v2 + # uses: actions/setup-node@latest # with: # node-version: "16.5.0" # cache: "npm" diff --git a/.github/workflows/cd-dev.yaml b/.github/workflows/cd-dev.yaml index 83a08bbc2..e2f82b735 100644 --- a/.github/workflows/cd-dev.yaml +++ b/.github/workflows/cd-dev.yaml @@ -27,7 +27,7 @@ jobs: with: project_id: zesty-dev - name: Set up Node - uses: actions/setup-node@v2 + uses: actions/setup-node@latest with: node-version: "16.5.0" cache: "npm" diff --git a/.github/workflows/cd-stable.yaml b/.github/workflows/cd-stable.yaml index 911e56437..eb38b8732 100644 --- a/.github/workflows/cd-stable.yaml +++ b/.github/workflows/cd-stable.yaml @@ -31,7 +31,7 @@ jobs: # with: # project_id: zesty-prod # - name: Set up Node - # uses: actions/setup-node@v2 + # uses: actions/setup-node@latest # with: # node-version: "16.5.0" # cache: "npm" diff --git a/.github/workflows/cd-stage.yaml b/.github/workflows/cd-stage.yaml index 22211ab86..8b60b7c69 100644 --- a/.github/workflows/cd-stage.yaml +++ b/.github/workflows/cd-stage.yaml @@ -35,7 +35,7 @@ jobs: with: project_id: zesty-stage - name: Set up Node - uses: actions/setup-node@v2 + uses: actions/setup-node@latest with: node-version: "16.5.0" cache: "npm" diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 93c26b047..d23a1f82f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,7 +30,7 @@ jobs: - name: Delete Old Screenshots run: gsutil rm gs://cypress_screenshots/* || true - name: Set up Node - uses: actions/setup-node@v2 + uses: actions/setup-node@latest with: node-version: "16.5.0" cache: "npm"