Skip to content

Commit 63545bc

Browse files
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](actions/cache@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] <support@github.com>
1 parent 92ab244 commit 63545bc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_apk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
libltdl-dev \
123123
patch \
124124
zlib1g-dev
125-
- uses: actions/cache@v4
125+
- uses: actions/cache@v5
126126
with:
127127
# This is where python for android puts its intermediary build
128128
# files - we cache this to improve build performance, but be
@@ -134,7 +134,7 @@ jobs:
134134
# but repeated workflow calls for this commit will use the cache.
135135
path: ./python-for-android
136136
key: ${{ runner.os }}-python-for-android-${{ steps.get-commit.outputs.sha }}
137-
- uses: actions/cache@v4
137+
- uses: actions/cache@v5
138138
with:
139139
path: ~/.cache/pip
140140
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}

.github/workflows/release_apk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/setup-python@v6
4040
with:
4141
python-version: 3.9
42-
- uses: actions/cache@v4
42+
- uses: actions/cache@v5
4343
with:
4444
path: ~/.cache/pip
4545
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}

0 commit comments

Comments
 (0)