From 2a3dbe718b0b1cc84618e05e8638d5b580c6d9ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:27:53 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/hello-world-gradle-workflow.yml | 4 ++-- .github/workflows/hello-world-maven-workflow.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a514f22..18de730 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/hello-world-gradle-workflow.yml b/.github/workflows/hello-world-gradle-workflow.yml index 62b4dd0..e382d40 100644 --- a/.github/workflows/hello-world-gradle-workflow.yml +++ b/.github/workflows/hello-world-gradle-workflow.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up JDK ${{ matrix.java-version }} uses: actions/setup-java@v5 @@ -76,7 +76,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: token: ${{ secrets.ACCESS_TOKEN }} - run: git fetch --prune --unshallow diff --git a/.github/workflows/hello-world-maven-workflow.yml b/.github/workflows/hello-world-maven-workflow.yml index 712f0f2..ab7dfe1 100644 --- a/.github/workflows/hello-world-maven-workflow.yml +++ b/.github/workflows/hello-world-maven-workflow.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up JDK ${{ matrix.java-version }} uses: actions/setup-java@v5 @@ -70,7 +70,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: token: ${{ secrets.ACCESS_TOKEN }} - run: git fetch --prune --unshallow