This is an automated email from the ASF dual-hosted git repository.
mseidel 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 4ae038e013 linter.yml: bump `actions/cache` and `actions/checkout`
(#408)
4ae038e013 is described below
commit 4ae038e013f880e94bb1dcca36e437712d55e278
Author: John Bampton <[email protected]>
AuthorDate: Thu Sep 4 05:29:31 2025 +1000
linter.yml: bump `actions/cache` and `actions/checkout` (#408)
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') }}