From eaf58f7532bc73db09370f4d793c981d64e1f49a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 12:15:28 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/Android.yml | 2 +- .github/workflows/Windows_x86_x64_arm64.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Android.yml b/.github/workflows/Android.yml index 2bbd807..c93a2ff 100644 --- a/.github/workflows/Android.yml +++ b/.github/workflows/Android.yml @@ -45,7 +45,7 @@ jobs: - name: Cache SDL2 id: cache-sdl2 - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | Builder/Android/app/jni/SDL diff --git a/.github/workflows/Windows_x86_x64_arm64.yml b/.github/workflows/Windows_x86_x64_arm64.yml index 9c550c2..cc1bcec 100644 --- a/.github/workflows/Windows_x86_x64_arm64.yml +++ b/.github/workflows/Windows_x86_x64_arm64.yml @@ -35,7 +35,7 @@ jobs: # SDL2 のセットアップをキャッシュし、必要ならスクリプトで実行 - name: Cache SDL2 id: cache-sdl2 - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: Builder/Windows/SDL2 key: ${{ runner.os }}-sdl2-${{ hashFiles('Builder/Windows/setup_sdl2.ps1') }}