From 88498d020d3000aa112dbb9dd2b977bcf196e0aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 21:15:26 +0000 Subject: [PATCH] workflows: bump the deps group with 2 updates Bumps the deps group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `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) Updates `actions/cache` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps ... Signed-off-by: dependabot[bot] --- .github/workflows/retile.yml | 12 ++++++------ .github/workflows/validate.yml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/retile.yml b/.github/workflows/retile.yml index 1c41f99..6fb4a6e 100644 --- a/.github/workflows/retile.yml +++ b/.github/workflows/retile.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 with: @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: pip install --break-system-packages ${PYTHON_DEPS} - name: Cache dependencies - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: key: ${{ env.PIP_CACHE_KEY }} path: /home/runner/.cache/pip @@ -58,13 +58,13 @@ jobs: matrix: ${{ fromJson(needs.setup.outputs.slide-matrix) }} steps: - name: Check out repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 with: python-version: ${{ env.PYTHON_VER }} - name: Cache dependencies - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: key: ${{ env.PIP_CACHE_KEY }} path: /home/runner/.cache/pip @@ -97,13 +97,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 with: python-version: ${{ env.PYTHON_VER }} - name: Cache dependencies - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: key: ${{ env.PIP_CACHE_KEY }} path: /home/runner/.cache/pip diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 502b6b4..f7e7f38 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-slim steps: - name: Check out repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 with: @@ -23,7 +23,7 @@ jobs: - name: Install dependencies run: python -m pip install prek uv - name: Cache pre-commit environments - uses: actions/cache@v5 + uses: actions/cache@v6 with: key: prek|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} path: ~/.cache/prek