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