From 9e28edd8418d2210549fb05488000f17536326c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:32:24 +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/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/tagging.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1a4436..c338f3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: language: ['python'] steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: @@ -54,7 +54,7 @@ jobs: needs: [analyze] steps: - name: Checkout source code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: lfs: 'true' - name: Set Tag Name @@ -134,7 +134,7 @@ jobs: verbosity: "10" kubectl_version: "v1.29.3" - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run K8s test run: | kubectl version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc3a8ce..23350ff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: if: ${{ contains(github.ref, 'main') && github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} steps: - name: Check out repository code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: lfs: 'true' - name: Fetch remote tags diff --git a/.github/workflows/tagging.yml b/.github/workflows/tagging.yml index dc22c84..e09eb20 100644 --- a/.github/workflows/tagging.yml +++ b/.github/workflows/tagging.yml @@ -15,7 +15,7 @@ jobs: if: ${{ contains(github.ref, 'main') && github.event.workflow_run.conclusion == 'success' }} steps: - name: Check out repository code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set Tag Value run: | echo "DATE=v$(echo `date +'%Y.%m'`)" >> $GITHUB_ENV