From 93e0aee958c880fc01fc452f45d9278c8f74df73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 22:43:45 +0000 Subject: [PATCH] chore(deps): bump actions/checkout in the all-dependencies group Bumps the all-dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-merge-helm-chart-bump.yml | 2 +- .github/workflows/auto-merge.yml | 2 +- .github/workflows/auto-unseal-cd.yml | 2 +- .github/workflows/helm-chart-bump.yml | 2 +- .github/workflows/helm-release.yml | 2 +- .github/workflows/linting.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/auto-merge-helm-chart-bump.yml b/.github/workflows/auto-merge-helm-chart-bump.yml index af9ef32..dcae89d 100644 --- a/.github/workflows/auto-merge-helm-chart-bump.yml +++ b/.github/workflows/auto-merge-helm-chart-bump.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Enable auto-merge for PR run: gh pr merge ${{ github.event.pull_request.number }} --auto --squash env: diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 8c68b44..c8b5b5e 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -13,7 +13,7 @@ jobs: if: ${{ github.actor == 'dependabot[bot]' }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Enable auto-merge for PR run: gh pr merge ${{ github.event.pull_request.number }} --auto --squash env: diff --git a/.github/workflows/auto-unseal-cd.yml b/.github/workflows/auto-unseal-cd.yml index a3945f9..928b2a3 100644 --- a/.github/workflows/auto-unseal-cd.yml +++ b/.github/workflows/auto-unseal-cd.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/helm-chart-bump.yml b/.github/workflows/helm-chart-bump.yml index ba33281..09c1153 100644 --- a/.github/workflows/helm-chart-bump.yml +++ b/.github/workflows/helm-chart-bump.yml @@ -11,7 +11,7 @@ jobs: - name: Checkout code with: token: ${{ secrets.PERSONAL_TOKEN }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Bump chart version id: bump_chart diff --git a/.github/workflows/helm-release.yml b/.github/workflows/helm-release.yml index a34ec0f..5781f1f 100644 --- a/.github/workflows/helm-release.yml +++ b/.github/workflows/helm-release.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.PERSONAL_TOKEN }} diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index cf43b7e..3a27ca2 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -10,7 +10,7 @@ jobs: checks: write contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.PERSONAL_TOKEN }} - uses: dtolnay/rust-toolchain@stable