From 8ef730e714ac57eaa52a699236b445ee2ff0dd93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 07:39:08 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 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/v5...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/build-and-test.yaml | 6 +++--- .github/workflows/release.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 2075016..584ca8b 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -38,7 +38,7 @@ jobs: steps: # Checkout the repository code with full git history. - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: # Fetch all commits and branches for complete history. fetch-depth: 0 @@ -61,7 +61,7 @@ jobs: steps: # Checkout the repository code. - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Install the Go version specified in the matrix. - name: Install Go ${{ matrix.go-version }} uses: actions/setup-go@v6 @@ -91,7 +91,7 @@ jobs: steps: # Checkout the repository code. - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Install Go for the build test. - name: Install Go uses: actions/setup-go@v6 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5595f3c..538b6c9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -35,7 +35,7 @@ jobs: steps: # Check out repository with full Git history for version analysis. - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0