From 95d4674e2063abd31587a3382e3b0035407efb3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 22:42:59 +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/changelog-fragment.yml | 2 +- .github/workflows/prepare-release.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- .github/workflows/update-minecraft-data.yml | 2 +- .github/workflows/validation.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/changelog-fragment.yml b/.github/workflows/changelog-fragment.yml index a2f6f9e..15053b0 100644 --- a/.github/workflows/changelog-fragment.yml +++ b/.github/workflows/changelog-fragment.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # `towncrier check` runs `git diff --name-only origin/main...`, which # needs a non-shallow clone. diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 4873e0a..6793a9e 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -25,7 +25,7 @@ jobs: private-key: ${{ secrets.PYMINE_BOT_PRIVATE_KEY }} - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ steps.generate_token.outputs.token }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f6fbe82..455608a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # Load the minecraft-data submodule, as it needs to be included in the release submodules: "recursive" diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 3009617..cebeb22 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # We will need the minecraft-data submodule to run tests submodules: "recursive" diff --git a/.github/workflows/update-minecraft-data.yml b/.github/workflows/update-minecraft-data.yml index ce8aac7..abff698 100644 --- a/.github/workflows/update-minecraft-data.yml +++ b/.github/workflows/update-minecraft-data.yml @@ -19,7 +19,7 @@ jobs: private-key: ${{ secrets.PYMINE_BOT_PRIVATE_KEY }} - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ steps.generate_token.outputs.token }} submodules: "recursive" diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 2228639..f5cf0a7 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup uv uses: astral-sh/setup-uv@v7