From 453c40e8fc474b24662a1eda7a3d4c93d3ec0dac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 03:04:50 +0000 Subject: [PATCH] chore(deps): 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/build_game.yml | 4 ++-- .github/workflows/execute_tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_game.yml b/.github/workflows/build_game.yml index 3fad5583..752a3e3e 100644 --- a/.github/workflows/build_game.yml +++ b/.github/workflows/build_game.yml @@ -37,7 +37,7 @@ jobs: run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id - name: Restore LFS cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: lfs-cache with: path: .git/lfs @@ -51,7 +51,7 @@ jobs: git reset --hard - name: Restore Library cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: unity-ggjj/Library key: Library-${{ hashFiles('unity-ggjj/Assets/**', 'unity-ggjj/Packages/**', 'unity-ggjj/ProjectSettings/**') }} diff --git a/.github/workflows/execute_tests.yml b/.github/workflows/execute_tests.yml index f9655026..0bf7dd3e 100644 --- a/.github/workflows/execute_tests.yml +++ b/.github/workflows/execute_tests.yml @@ -33,7 +33,7 @@ jobs: run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id - name: Restore LFS cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: lfs-cache with: path: .git/lfs @@ -47,7 +47,7 @@ jobs: git reset --hard - name: Restore Library cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: unity-ggjj/Library key: Library-${{ hashFiles('unity-ggjj/Assets/**', 'unity-ggjj/Packages/**', 'unity-ggjj/ProjectSettings/**') }}