diff --git a/.github/workflows/auto-deprecate.yml b/.github/workflows/auto-deprecate.yml index 4a8dc09aa..251fc8eae 100644 --- a/.github/workflows/auto-deprecate.yml +++ b/.github/workflows/auto-deprecate.yml @@ -23,7 +23,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Deprecate versions run: yarn npm-deprecate env: diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index 0ae86bd05..73d41c4b2 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -44,7 +44,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Bump Version & Publish run: | # Resolve the tag to be used. "next" for push events, "pr-{prNumber}" for dispatch events. @@ -77,7 +77,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Build documentation run: yarn docs - name: Publish Docs diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 5eb23a439..e098bc2a4 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -27,7 +27,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Run ESLint run: yarn lint --fix=false @@ -49,7 +49,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Run tests run: yarn test --coverage - name: Store code coverage report @@ -78,7 +78,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Build Code run: yarn build diff --git a/.github/workflows/deprecate-on-merge.yml b/.github/workflows/deprecate-on-merge.yml index 5d6635710..c74f7c686 100644 --- a/.github/workflows/deprecate-on-merge.yml +++ b/.github/workflows/deprecate-on-merge.yml @@ -24,7 +24,7 @@ jobs: key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - name: Install Dependencies if Cache Miss if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile + run: yarn --immutable - name: Deprecate versions run: yarn npm-deprecate --name "*pr-${PR_NUMBER}*" -d -v env: