From 4018d19bd73413bf822d86f487153fb4e44f56a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 16:41:33 +0000 Subject: [PATCH] Bump actions/cache from 3 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/jig.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jig.yml b/.github/workflows/jig.yml index 65322ad..30e9774 100644 --- a/.github/workflows/jig.yml +++ b/.github/workflows/jig.yml @@ -32,14 +32,14 @@ jobs: # GradleやMavenのキャッシュです。 actions/gradle-build-action などを使用する場合は自分でやらなくていいです。 - name: Cache Gradle - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: | ~/.gradle/caches ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} - name: Cache Maven - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: | ~/.m2