From 4794b62dbb978f375a6b1752e31d01d647a7f374 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 27 Jun 2026 21:14:54 +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/java.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index b2e8ad5..299ba05 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -16,7 +16,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: @@ -24,7 +24,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: path: ~/.cache/prek key: prek|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} @@ -50,7 +50,7 @@ jobs: shell: bash steps: - name: Check out repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Java uses: actions/setup-java@v5 with: @@ -118,7 +118,7 @@ jobs: contents: write steps: - name: Check out repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Download artifacts uses: actions/download-artifact@v8 with: