From 6d5726a5822c0b57f737efe50db4cf21fe2d6d6e Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon, 9 Feb 2026 18:29:27 -0500
Subject: [PATCH] Update Github Actions (major) (#857)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://redirect.github.com/actions/cache) | action |
major | `v4` → `v5` |
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | major | `v5` → `v6` |
|
[actions/setup-python](https://redirect.github.com/actions/setup-python)
| action | major | `v5` → `v6` |
|
[actions/upload-artifact](https://redirect.github.com/actions/upload-artifact)
| action | major | `v5` → `v6` |
---
### Release Notes
actions/cache (actions/cache)
### [`v5`](https://redirect.github.com/actions/cache/compare/v4...v5)
[Compare
Source](https://redirect.github.com/actions/cache/compare/v4...v5)
actions/checkout (actions/checkout)
### [`v6`](https://redirect.github.com/actions/checkout/compare/v5...v6)
[Compare
Source](https://redirect.github.com/actions/checkout/compare/v5...v6)
actions/setup-python (actions/setup-python)
###
[`v6`](https://redirect.github.com/actions/setup-python/compare/v5...v6)
[Compare
Source](https://redirect.github.com/actions/setup-python/compare/v5...v6)
actions/upload-artifact (actions/upload-artifact)
###
[`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6)
[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6)
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/damontecres/Wholphin).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
.github/actions/native-build/action.yml | 8 ++++----
.github/actions/setup/action.yml | 2 +-
.github/workflows/main.yml | 2 +-
.github/workflows/pr.yml | 8 ++++----
.github/workflows/release.yml | 2 +-
5 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/.github/actions/native-build/action.yml b/.github/actions/native-build/action.yml
index 309c6b59..770e552a 100644
--- a/.github/actions/native-build/action.yml
+++ b/.github/actions/native-build/action.yml
@@ -10,7 +10,7 @@ runs:
- name: Load ffmpeg module cache
id: cache_ffmpeg_module
if: ${{ inputs.cache }}
- uses: actions/cache/restore@v4
+ uses: actions/cache/restore@v5
with:
path: |
app/libs
@@ -18,7 +18,7 @@ runs:
- name: Load libmpv module cache
id: cache_libmpv_module
if: ${{ inputs.cache }}
- uses: actions/cache/restore@v4
+ uses: actions/cache/restore@v5
with:
path: |
app/src/main/libs
@@ -43,7 +43,7 @@ runs:
./build_ffmpeg_decoder.sh "${{ env.ANDROID_SDK_ROOT }}/ndk/${{ env.NDK_VERSION }}"
- name: Save ffmpeg module cache
id: cache_ffmpeg_module_save
- uses: actions/cache/save@v4
+ uses: actions/cache/save@v5
with:
path: |
app/libs
@@ -75,7 +75,7 @@ runs:
#ln -s libs jniLibs
- name: Save libmpv module cache
id: cache_libmpv_module_save
- uses: actions/cache/save@v4
+ uses: actions/cache/save@v5
with:
path: |
app/src/main/libs
diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml
index 1153cc97..5450bb87 100644
--- a/.github/actions/setup/action.yml
+++ b/.github/actions/setup/action.yml
@@ -6,7 +6,7 @@ runs:
steps:
# Setup the SDKs
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Setup JDK
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 539f0572..9583525d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -25,7 +25,7 @@ jobs:
contents: write
steps:
- name: Checkout the code
- uses: actions/checkout@v5
+ uses: actions/checkout@v6
with:
fetch-depth: 0 # Need the tags to build
- name: Setup
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 56513c4b..6a18c5c3 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
- uses: actions/checkout@v5
+ uses: actions/checkout@v6
with:
fetch-depth: 0 # Need the tags to build
- name: Setup Python
@@ -31,7 +31,7 @@ jobs:
needs: pre-commit
steps:
- name: Checkout the code
- uses: actions/checkout@v5
+ uses: actions/checkout@v6
with:
fetch-depth: 0 # Need the tags to build
- name: Setup
@@ -49,13 +49,13 @@ jobs:
- name: Tar build dirs
run: |
tar -czf build.tgz ./app/.
- - uses: actions/upload-artifact@v5
+ - uses: actions/upload-artifact@v6
id: upload-build-dirs
with:
name: "${{ env.BUILD_DIRS_ARTIFACT }}"
path: build.tgz
if-no-files-found: error
- - uses: actions/upload-artifact@v5
+ - uses: actions/upload-artifact@v6
with:
name: APKs
path: "${{ steps.buildapp.outputs.apks }}"
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 7c5c45f9..b63017b5 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -21,7 +21,7 @@ jobs:
contents: write
steps:
- name: Checkout the code
- uses: actions/checkout@v5
+ uses: actions/checkout@v6
with:
fetch-depth: 0 # Need the tags to build
- name: Setup