From ccaf9187cbd40cfa1e588699360bd200df6ab923 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 23:03:26 +0200 Subject: [PATCH] chore(deps): update actions/checkout action to v4 (#569) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/ci-examples.yml | 2 +- .github/workflows/ci-monorepo-integrity.yml | 2 +- .github/workflows/ci-packages.yml | 2 +- .github/workflows/clean-up-pr-caches.yml | 2 +- .github/workflows/release-or-version-pr.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-examples.yml b/.github/workflows/ci-examples.yml index 9ff16b4ad..b0069d67f 100644 --- a/.github/workflows/ci-examples.yml +++ b/.github/workflows/ci-examples.yml @@ -21,7 +21,7 @@ jobs: matrix: node-version: [18.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: ⚙️ Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 diff --git a/.github/workflows/ci-monorepo-integrity.yml b/.github/workflows/ci-monorepo-integrity.yml index 37b9552b8..b0bb30b00 100644 --- a/.github/workflows/ci-monorepo-integrity.yml +++ b/.github/workflows/ci-monorepo-integrity.yml @@ -21,7 +21,7 @@ jobs: matrix: node-version: [18.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: ⚙️ Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 diff --git a/.github/workflows/ci-packages.yml b/.github/workflows/ci-packages.yml index c9c2ff25c..422524b4e 100644 --- a/.github/workflows/ci-packages.yml +++ b/.github/workflows/ci-packages.yml @@ -21,7 +21,7 @@ jobs: matrix: node-version: [18.x, 20.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Fetch all git history so that yarn workspaces --since can compare with the correct commits # @link https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches diff --git a/.github/workflows/clean-up-pr-caches.yml b/.github/workflows/clean-up-pr-caches.yml index 2a621cad5..19ff2549a 100644 --- a/.github/workflows/clean-up-pr-caches.yml +++ b/.github/workflows/clean-up-pr-caches.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: 🧹 Cleanup run: | diff --git a/.github/workflows/release-or-version-pr.yml b/.github/workflows/release-or-version-pr.yml index cf890b48a..f63674829 100644 --- a/.github/workflows/release-or-version-pr.yml +++ b/.github/workflows/release-or-version-pr.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # To run comparison we need more than the latest commit. Keep the fetch-depth relatively # high or set it to zero to get all commits from the git repo.