From 8c428fe541e80e49dff3523680d1dcf652864101 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 11:36:21 +0300 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 4 (#773) Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/devworkspace-generator-publish-next.yml | 2 +- .github/workflows/devworkspace-generator-release.yml | 2 +- .github/workflows/next-build.yml | 2 +- .github/workflows/pr-checks.yml | 4 ++-- .github/workflows/release.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/devworkspace-generator-publish-next.yml b/.github/workflows/devworkspace-generator-publish-next.yml index 4a4e3c91d..a530fae98 100644 --- a/.github/workflows/devworkspace-generator-publish-next.yml +++ b/.github/workflows/devworkspace-generator-publish-next.yml @@ -27,7 +27,7 @@ jobs: registry-url: 'https://registry.npmjs.org' scope: '@eclipse-che' - name: Clone source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT diff --git a/.github/workflows/devworkspace-generator-release.yml b/.github/workflows/devworkspace-generator-release.yml index dcd6b1f3f..50a47d5a6 100644 --- a/.github/workflows/devworkspace-generator-release.yml +++ b/.github/workflows/devworkspace-generator-release.yml @@ -27,7 +27,7 @@ jobs: steps: - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - diff --git a/.github/workflows/next-build.yml b/.github/workflows/next-build.yml index 54ba53718..dc20d5ce1 100644 --- a/.github/workflows/next-build.yml +++ b/.github/workflows/next-build.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 008f6a2e1..4e252c439 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -18,7 +18,7 @@ jobs: shellcheck: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Shellcheck @@ -29,7 +29,7 @@ jobs: build-main-image: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c124d67b2..4d18f9fc2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: steps: - name: "Checkout source code" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 -