diff --git a/.github/workflow-examples/automatic_deployment_production.yml b/.github/workflow-examples/automatic_deployment_production.yml index 852c8778e8..45ee836dcf 100644 --- a/.github/workflow-examples/automatic_deployment_production.yml +++ b/.github/workflow-examples/automatic_deployment_production.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node: [16.x] + node: [18.x] steps: - name: Checkout code @@ -32,7 +32,7 @@ jobs: ${{ runner.os }}-node- - name: Install Stencil CLI Dependency - run: npm install -g @bigcommerce/stencil-cli + run: npm install -g @bigcommerce/stencil-cli@7.2.0 - name: Install Dependencies run: npm ci diff --git a/.github/workflow-examples/poll_for_changed_configuration.yml b/.github/workflow-examples/poll_for_changed_configuration.yml index 5949b20604..204d9ea961 100644 --- a/.github/workflow-examples/poll_for_changed_configuration.yml +++ b/.github/workflow-examples/poll_for_changed_configuration.yml @@ -37,7 +37,9 @@ jobs: ${{ runner.os }}-node- - name: Install Stencil CLI Dependency - run: npm install -g @bigcommerce/stencil-cli@7.4.1 + run: npm install -g @bigcommerce/stencil-cli@7.2.0 + - name: Check Stencil CLI node-version + run: npx stencil-cli --version # # You must configure store credentials as secrets on your GitHub repo for this job to work