This is an automated email from the ASF dual-hosted git repository.
johnbam pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new ffa4afe78d gha: upgrade to `actions/cache@v5` (#455)
ffa4afe78d is described below
commit ffa4afe78d79d8991b9c7c357010cea24566e838
Author: John Bampton <[email protected]>
AuthorDate: Thu Jan 1 05:00:34 2026 +1000
gha: upgrade to `actions/cache@v5` (#455)
Updated the pre-commit GitHub actions workflow to use version 5
https://github.com/actions/cache/releases/tag/v5.0.0
---
.github/workflows/pre-commit.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index 3796d7726c..10c7ee5813 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -39,7 +39,7 @@ jobs:
pip install -r requirements-dev.txt
- name: Set PY
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- - uses: actions/cache@v4
+ - uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{
hashFiles('.pre-commit-config.yaml') }}