From 6dfb0e6ab62b8e1b172ab7fa75054d476120494d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:09:43 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test-publish-workflow.yml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-publish-workflow.yml b/.github/workflows/test-publish-workflow.yml index bb1c356..774127f 100644 --- a/.github/workflows/test-publish-workflow.yml +++ b/.github/workflows/test-publish-workflow.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 diff --git a/action.yml b/action.yml index be2516c..cb1181b 100644 --- a/action.yml +++ b/action.yml @@ -245,14 +245,14 @@ runs: steps: - name: Checkout repository (shallow) if: inputs.checkout-current-repo == 'true' && inputs.changelog-enabled != 'true' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: submodules: recursive fetch-depth: 1 - name: Checkout repository (full history) if: inputs.checkout-current-repo == 'true' && inputs.changelog-enabled == 'true' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: submodules: recursive fetch-depth: 0