From 628a47ba64e7c71e66a4c4674d73c250dda0a52c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 15:02:22 +0000 Subject: [PATCH] Bump the setup-env-actions group across 1 directory with 2 updates Bumps the setup-env-actions group with 2 updates in the /.github/actions/setup-env directory: [actions/setup-python](https://github.com/actions/setup-python) and [actions/cache](https://github.com/actions/cache). 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/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: setup-env-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: setup-env-actions ... Signed-off-by: dependabot[bot] --- .github/actions/setup-env/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-env/action.yaml b/.github/actions/setup-env/action.yaml index 3046827..ed11c8a 100644 --- a/.github/actions/setup-env/action.yaml +++ b/.github/actions/setup-env/action.yaml @@ -27,7 +27,7 @@ runs: using: "composite" steps: - name: Set up Python ${{ inputs.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} - name: Generate Cache Key PY @@ -37,7 +37,7 @@ runs: $GITHUB_ENV - name: Cache pre-commit installation if: ${{ inputs.cache-pre-commit == 'true' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | .cache @@ -45,7 +45,7 @@ runs: key: cache|${{ runner.os }}|${{ runner.arch }}|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} - name: Cache venv if: ${{ inputs.cache-venv == 'true' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | .cache