From a64b8d57499088f012de1cb0d211bd243966673c Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Mon, 24 Oct 2022 13:05:25 +0200 Subject: [PATCH] ci(.github): fix check pacakges checkout fetch depth (#25298) --- .github/workflows/check-packages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-packages.yml b/.github/workflows/check-packages.yml index abc6e4f855cae5..43ef1e696c728d 100644 --- a/.github/workflows/check-packages.yml +++ b/.github/workflows/check-packages.yml @@ -6,11 +6,14 @@ jobs: dependency-deduplication: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + fetch-depth: 0 - uses: actions/setup-node@v3 with: node-version: 14.18.1 + cache: 'yarn' - uses: tj-actions/changed-files@v32 id: changed-files-specific