From e63a6d637cf4e036707eb8f347ad5f6f9372f157 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 05:01:43 +0000 Subject: [PATCH] build(deps): bump the ci-dependencies group with 3 updates Bumps the ci-dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [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/v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/pull_request.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d30a5d5..49b9ad7 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -16,12 +16,12 @@ jobs: steps: - name: ⬇️ Set up code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: 🐍 Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: cache: pip cache-dependency-path: setup.py diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2398281..75be19f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - name: ⬇️ Set up code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: show-progress: false - name: 🐍 Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: .python-version cache: pip @@ -47,7 +47,7 @@ jobs: steps: - name: ⬇️ Download artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: build-artifacts path: dist