From 9f75a5f7289510673d51515cfd0ec4691e2775ae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 08:19:16 +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/unity-build.yml | 2 +- .github/workflows/unity-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unity-build.yml b/.github/workflows/unity-build.yml index 8800278..4958b57 100644 --- a/.github/workflows/unity-build.yml +++ b/.github/workflows/unity-build.yml @@ -17,7 +17,7 @@ jobs: lfs: true - name: Cache Library folder - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: Library key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }} diff --git a/.github/workflows/unity-test.yml b/.github/workflows/unity-test.yml index b213f2a..5632817 100644 --- a/.github/workflows/unity-test.yml +++ b/.github/workflows/unity-test.yml @@ -17,7 +17,7 @@ jobs: lfs: true - name: Cache Library folder - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: Library key: Library-Test-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}