From 4361a54820142926aea1eaabf0bcc1ad50cc455d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 08:39:06 +0200 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 (#1105) 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/code-samples.yml | 4 ++-- .github/workflows/dependabot-combine-prs.yml | 2 +- .github/workflows/generate-android-studio-releases.yml | 2 +- .github/workflows/generate-libraries-releases.yml | 2 +- .github/workflows/verify-api-changes-pages.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/code-samples.yml b/.github/workflows/code-samples.yml index ebf26fe6d..499f10bbb 100644 --- a/.github/workflows/code-samples.yml +++ b/.github/workflows/code-samples.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Gradle Wrapper Validation uses: gradle/wrapper-validation-action@v1.1.0 @@ -48,7 +48,7 @@ jobs: - tree_structure_provider steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java uses: actions/setup-java@v3 with: diff --git a/.github/workflows/dependabot-combine-prs.yml b/.github/workflows/dependabot-combine-prs.yml index 62f721ef3..11cc7a7e4 100644 --- a/.github/workflows/dependabot-combine-prs.yml +++ b/.github/workflows/dependabot-combine-prs.yml @@ -99,7 +99,7 @@ jobs: console.log('Combined: ' + combined); return combined # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Creates a branch with other PR branches merged together diff --git a/.github/workflows/generate-android-studio-releases.yml b/.github/workflows/generate-android-studio-releases.yml index 6fdf8723b..c009f522e 100644 --- a/.github/workflows/generate-android-studio-releases.yml +++ b/.github/workflows/generate-android-studio-releases.yml @@ -9,7 +9,7 @@ jobs: generate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Generate run: "${GITHUB_WORKSPACE}/.github/scripts/android_studio_releases.main.kts" - name: Commit changes diff --git a/.github/workflows/generate-libraries-releases.yml b/.github/workflows/generate-libraries-releases.yml index 69674aaa9..543f043be 100644 --- a/.github/workflows/generate-libraries-releases.yml +++ b/.github/workflows/generate-libraries-releases.yml @@ -9,7 +9,7 @@ jobs: generate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Generate run: "${GITHUB_WORKSPACE}/.github/scripts/libraries_releases.main.kts" - name: Commit changes diff --git a/.github/workflows/verify-api-changes-pages.yml b/.github/workflows/verify-api-changes-pages.yml index 00f9ea5c3..a3c9c4cd2 100644 --- a/.github/workflows/verify-api-changes-pages.yml +++ b/.github/workflows/verify-api-changes-pages.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java uses: actions/setup-java@v3 with: