From f5dee038d861fc3adb96d315ead8534662ed6d63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 20:17:22 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4...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/auto-tag.yml | 2 +- .github/workflows/docusaurus.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index 01b8fe1..7b9e4a3 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6 with: fetch-depth: 0 # Need full history for git describe diff --git a/.github/workflows/docusaurus.yml b/.github/workflows/docusaurus.yml index d303415..313ca44 100644 --- a/.github/workflows/docusaurus.yml +++ b/.github/workflows/docusaurus.yml @@ -29,7 +29,7 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 # Needed for version timestamps diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0be63c..6e48fe5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: version: ${{ steps.tag.outputs.version }} steps: - name: Checkout repository - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} @@ -106,7 +106,7 @@ jobs: needs: sync-manifest # Wait for manifest sync to complete steps: - name: Checkout repository - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch all history for git-cliff ref: main # Use updated main branch if manifest was synced