From e430c6d4d987841cf4bf313b073f11b8d95ff087 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:00:09 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 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] --- .github/workflows/build.yml | 4 ++-- .github/workflows/release-nightly.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/reusable-codeInspection.yml | 2 +- .github/workflows/reusable-gradleValidation.yml | 2 +- .github/workflows/reusable-integrationTests.yml | 2 +- .github/workflows/reusable-single-unitTest.yml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 918860b145..343b308c69 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,7 +56,7 @@ jobs: steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java uses: actions/setup-java@v3 @@ -109,7 +109,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Remove old release drafts by using the curl request for the available releases with a draft flag - name: Remove Old Release Drafts diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index 14ccd75db2..e566dbd696 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -59,7 +59,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69244cb9a5..9fff09944b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/reusable-codeInspection.yml b/.github/workflows/reusable-codeInspection.yml index 0daf9cc971..b0898e774c 100644 --- a/.github/workflows/reusable-codeInspection.yml +++ b/.github/workflows/reusable-codeInspection.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # only report issues that appeared in a PR diff --git a/.github/workflows/reusable-gradleValidation.yml b/.github/workflows/reusable-gradleValidation.yml index 0dfcf0d733..083ce24399 100644 --- a/.github/workflows/reusable-gradleValidation.yml +++ b/.github/workflows/reusable-gradleValidation.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java uses: actions/setup-java@v3 diff --git a/.github/workflows/reusable-integrationTests.yml b/.github/workflows/reusable-integrationTests.yml index 230788678e..fd731d9b95 100644 --- a/.github/workflows/reusable-integrationTests.yml +++ b/.github/workflows/reusable-integrationTests.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java uses: actions/setup-java@v3 diff --git a/.github/workflows/reusable-single-unitTest.yml b/.github/workflows/reusable-single-unitTest.yml index d21879be6e..b91092de71 100644 --- a/.github/workflows/reusable-single-unitTest.yml +++ b/.github/workflows/reusable-single-unitTest.yml @@ -33,7 +33,7 @@ jobs: run: ${{ inputs.script }} - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Java uses: actions/setup-java@v3