From 63dbd536b0e24e3d29d447fbf084fbcb26d7aa42 Mon Sep 17 00:00:00 2001 From: Josh Black Date: Wed, 19 Jan 2022 13:14:20 -0600 Subject: [PATCH] ci(sync): update sync workflow to run on ubuntu and remove --check-cache (#10451) * chore(project): run sync * ci(sync): update sync workflow to run on ubuntu and remove --check-cache Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- .github/workflows/sync-generated-files.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync-generated-files.yml b/.github/workflows/sync-generated-files.yml index 14bccb0c0b75..f6ec3595e652 100644 --- a/.github/workflows/sync-generated-files.yml +++ b/.github/workflows/sync-generated-files.yml @@ -5,7 +5,7 @@ on: - main jobs: release: - runs-on: macOS-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Use Node.js 16.x @@ -13,7 +13,7 @@ jobs: with: node-version: '16.x' - name: Install dependencies - run: yarn install --immutable --immutable-cache --check-cache + run: yarn install --immutable --immutable-cache - name: Build project run: yarn build - name: Sync project dependency files