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') }}