From 4eb4de7929fe977ee2049cfe6a5ee170a4d6997d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:09:04 +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/branch-pipeline.yaml | 4 ++-- .github/workflows/pr-pipeline.yaml | 4 ++-- .github/workflows/release-pipeline.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/branch-pipeline.yaml b/.github/workflows/branch-pipeline.yaml index 38957d7..4228dcf 100644 --- a/.github/workflows/branch-pipeline.yaml +++ b/.github/workflows/branch-pipeline.yaml @@ -17,7 +17,7 @@ jobs: go-version: '1.22' - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check for [skip ci] in commit messages or PR title id: check_skip_ci diff --git a/.github/workflows/pr-pipeline.yaml b/.github/workflows/pr-pipeline.yaml index 9e7cf9b..24f2879 100644 --- a/.github/workflows/pr-pipeline.yaml +++ b/.github/workflows/pr-pipeline.yaml @@ -16,7 +16,7 @@ jobs: go-version: '1.22' - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -41,7 +41,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup envs id: setup_envs diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index f77e632..24ca0bc 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get the current tag run: |