This is an automated email from the ASF dual-hosted git repository.

johnbam pushed a commit to branch jbampton-patch-1
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit 648e546586cddfe9614723ceec5481684b37a471
Author: John Bampton <[email protected]>
AuthorDate: Thu Sep 4 04:41:03 2025 +1000

    linter.yml: bump `actions/cache` and `actions/checkout`
    
    Both actions moved up one version
    
    https://github.com/actions/checkout
    
    https://github.com/actions/cache
---
 .github/workflows/linter.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml
index 49113814bf..1901861a7a 100644
--- a/.github/workflows/linter.yml
+++ b/.github/workflows/linter.yml
@@ -32,14 +32,14 @@ jobs:
     runs-on: ubuntu-24.04
     steps:
       - name: Check Out
-        uses: actions/checkout@v4
+        uses: actions/checkout@v5
       - name: Install
         run: |
           python -m pip install --upgrade pip
           pip install pre-commit
       - name: Set PY
         run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
-      - uses: actions/cache@v3
+      - uses: actions/cache@v4
         with:
           path: ~/.cache/pre-commit
           key: pre-commit|${{ env.PY }}|${{ 
hashFiles('.pre-commit-config.yaml') }}

Reply via email to