From a59b755eef79b6ce4265deccc9d61a0d04177653 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 07:04:23 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 6 to 7 in /workflow-templates Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- workflow-templates/gradle-build-sonar-scan.yml | 2 +- workflow-templates/pr.yml | 2 +- workflow-templates/push.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow-templates/gradle-build-sonar-scan.yml b/workflow-templates/gradle-build-sonar-scan.yml index 1f4cb17..ba93e4e 100644 --- a/workflow-templates/gradle-build-sonar-scan.yml +++ b/workflow-templates/gradle-build-sonar-scan.yml @@ -79,7 +79,7 @@ jobs: checks: write steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Set up JDK ${{ env.JAVA_VERSION }} diff --git a/workflow-templates/pr.yml b/workflow-templates/pr.yml index 6556bd3..2def9e0 100644 --- a/workflow-templates/pr.yml +++ b/workflow-templates/pr.yml @@ -18,7 +18,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up JDK 21 diff --git a/workflow-templates/push.yml b/workflow-templates/push.yml index 55ce070..75840db 100644 --- a/workflow-templates/push.yml +++ b/workflow-templates/push.yml @@ -10,7 +10,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up JDK 21