From 9232e6fdae985532d19e8a99173bb1f60cd7316d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 12:16:18 +0000 Subject: [PATCH] chore(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 b372f48..8cc7617 100644 --- a/.github/workflows/branch-pipeline.yaml +++ b/.github/workflows/branch-pipeline.yaml @@ -17,7 +17,7 @@ jobs: go-version: '1.24' - 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 with: fetch-depth: 0 diff --git a/.github/workflows/pr-pipeline.yaml b/.github/workflows/pr-pipeline.yaml index 254760f..e7885e3 100644 --- a/.github/workflows/pr-pipeline.yaml +++ b/.github/workflows/pr-pipeline.yaml @@ -16,7 +16,7 @@ jobs: go-version: '1.24' - 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 with: fetch-depth: 0 diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index adfb4f2..85d8a2b 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3