From 8cb9ada685b6c93024aa872b1ea00189b88b052b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 12:02:24 +0000 Subject: [PATCH] chore: bump actions/checkout from 5.0.0 to 6.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.1. - [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/v5.0.0...v6.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c31f44fa..6e98a392 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - windows-latest runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v5.0.0 + - uses: actions/checkout@v6.0.1 - uses: actions/setup-java@v5 with: @@ -56,7 +56,7 @@ jobs: steps: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 # Setup Java 11 environment for the next steps - name: Setup Java @@ -141,7 +141,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 # Remove old release drafts by using the curl request for the available releases with draft flag - name: Remove Old Release Drafts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e67f023e..81a0b801 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.1 with: ref: ${{ github.event.release.tag_name }}