From e55435b4a4743f5cb5db61d5efb1ad4194dcfc1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 21:32:17 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/automatic_generation.yml | 6 +++--- .github/workflows/generate_package.yml | 4 ++-- .github/workflows/make_release.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/pytest.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/automatic_generation.yml b/.github/workflows/automatic_generation.yml index 23bebae..af7ab1a 100644 --- a/.github/workflows/automatic_generation.yml +++ b/.github/workflows/automatic_generation.yml @@ -14,7 +14,7 @@ jobs: need_to_release: ${{ steps.need-to-release.outputs.need-to-release }} steps: - name: checkout repo content - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: store current ha version id: current-ha-version run: echo "::set-output name=current-ha-version::$(cat ha_version)" @@ -62,7 +62,7 @@ jobs: python-version: ['3.13'] steps: - name: checkout repo content - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: download artifact uses: actions/download-artifact@v5 with: @@ -83,7 +83,7 @@ jobs: runs-on: "ubuntu-latest" if: needs.generate_package.outputs.need_to_release == 'true' steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: download artifact uses: actions/download-artifact@v5 with: diff --git a/.github/workflows/generate_package.yml b/.github/workflows/generate_package.yml index 0e89746..4acec4e 100644 --- a/.github/workflows/generate_package.yml +++ b/.github/workflows/generate_package.yml @@ -7,9 +7,9 @@ jobs: generate_package: runs-on: "ubuntu-latest" steps: - - uses: "actions/checkout@v5" + - uses: "actions/checkout@v6" - name: checkout repo content - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: setup python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/make_release.yml b/.github/workflows/make_release.yml index 90c420b..876c4c7 100644 --- a/.github/workflows/make_release.yml +++ b/.github/workflows/make_release.yml @@ -11,7 +11,7 @@ jobs: make_release: runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: store current ha version id: current-ha-version run: echo "::set-output name=current-ha-version::$(cat ha_version)" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index af01afc..ae08fc0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,7 +6,7 @@ jobs: make_release: runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 53db491..459ede1 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -22,7 +22,7 @@ jobs: python-version: ["3.13"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: