diff --git a/.github/workflows/depCheck.yml b/.github/workflows/depCheck.yml index d0df9bcfa95..e2aa07dd06b 100644 --- a/.github/workflows/depCheck.yml +++ b/.github/workflows/depCheck.yml @@ -6,7 +6,7 @@ jobs: timeout-minutes: 30 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/docReport.yml b/.github/workflows/docReport.yml index 0eb05d26fe5..546cd74c703 100644 --- a/.github/workflows/docReport.yml +++ b/.github/workflows/docReport.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache node modules id: cache-node-modules diff --git a/.github/workflows/docReportTeardown.yml b/.github/workflows/docReportTeardown.yml index 34930c01db3..27cf821e5e0 100644 --- a/.github/workflows/docReportTeardown.yml +++ b/.github/workflows/docReportTeardown.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache node modules id: cache-node-modules diff --git a/.github/workflows/e2e-ct.yml b/.github/workflows/e2e-ct.yml index 9c7efe57eb5..6795b849db2 100644 --- a/.github/workflows/e2e-ct.yml +++ b/.github/workflows/e2e-ct.yml @@ -13,7 +13,7 @@ jobs: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ vars.TURBO_TEAM }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 5896bee0566..68acde94d8c 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -13,7 +13,7 @@ jobs: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_TEAM: ${{ vars.TURBO_TEAM }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/etl.yml b/.github/workflows/etl.yml index aa50220869d..ddad8b052e0 100644 --- a/.github/workflows/etl.yml +++ b/.github/workflows/etl.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache node modules id: cache-node-modules diff --git a/.github/workflows/formatCheck.yml b/.github/workflows/formatCheck.yml index 52caf2189d9..70d5debc2be 100644 --- a/.github/workflows/formatCheck.yml +++ b/.github/workflows/formatCheck.yml @@ -6,7 +6,7 @@ jobs: timeout-minutes: 30 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/lint-fix-if-needed.yml b/.github/workflows/lint-fix-if-needed.yml index dc41550aa9e..38b28466ccc 100644 --- a/.github/workflows/lint-fix-if-needed.yml +++ b/.github/workflows/lint-fix-if-needed.yml @@ -20,7 +20,7 @@ jobs: # workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` thus we need an if check if: ${{ github.ref_name == 'next' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: lts/* diff --git a/.github/workflows/lintChanged.yml b/.github/workflows/lintChanged.yml index 8939d4452e2..b5fc332d090 100644 --- a/.github/workflows/lintChanged.yml +++ b/.github/workflows/lintChanged.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache node modules id: cache-node-modules diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index 8981176bef7..31d8a021b80 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -10,7 +10,7 @@ jobs: TURBO_TEAM: ${{ vars.TURBO_TEAM }} if: github.event_name == 'deployment_status' && github.event.deployment.environment == 'production' && github.event.deployment_status.state == 'success' && startsWith(github.event.deployment_status.target_url, 'https://performance-studio') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/prettier-if-needed.yml b/.github/workflows/prettier-if-needed.yml index 6ac358cf09c..a69917da352 100644 --- a/.github/workflows/prettier-if-needed.yml +++ b/.github/workflows/prettier-if-needed.yml @@ -20,7 +20,7 @@ jobs: # workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` thus we need an if check if: ${{ github.ref_name == 'next' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: lts/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edd3ace8fe0..57f662ef21b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node uses: actions/setup-node@v3 diff --git a/.github/workflows/typeCheck.yml b/.github/workflows/typeCheck.yml index 16faab3b144..f49011cc601 100644 --- a/.github/workflows/typeCheck.yml +++ b/.github/workflows/typeCheck.yml @@ -6,7 +6,7 @@ jobs: timeout-minutes: 15 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/yarn-if-needed.yml b/.github/workflows/yarn-if-needed.yml index ba9f82cbd63..28df324397e 100644 --- a/.github/workflows/yarn-if-needed.yml +++ b/.github/workflows/yarn-if-needed.yml @@ -22,7 +22,7 @@ jobs: # workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` thus we need an if check if: ${{ github.ref_name == 'next' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache node modules id: cache-node-modules uses: actions/cache@v3