From 63545bcb3dedc97835609d892405d85f2f6e5e83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 00:01:46 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 in the github group Bumps the github group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: github ... Signed-off-by: dependabot[bot] --- .github/workflows/build_apk.yml | 4 ++-- .github/workflows/release_apk.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_apk.yml b/.github/workflows/build_apk.yml index f71f9587..baebbd8f 100644 --- a/.github/workflows/build_apk.yml +++ b/.github/workflows/build_apk.yml @@ -122,7 +122,7 @@ jobs: libltdl-dev \ patch \ zlib1g-dev - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: # This is where python for android puts its intermediary build # files - we cache this to improve build performance, but be @@ -134,7 +134,7 @@ jobs: # but repeated workflow calls for this commit will use the cache. path: ./python-for-android key: ${{ runner.os }}-python-for-android-${{ steps.get-commit.outputs.sha }} - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} diff --git a/.github/workflows/release_apk.yml b/.github/workflows/release_apk.yml index 0f85f65a..6f56425d 100644 --- a/.github/workflows/release_apk.yml +++ b/.github/workflows/release_apk.yml @@ -39,7 +39,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: 3.9 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}