@@ -13,10 +13,10 @@ jobs:
1313 contents : write
1414 runs-on : ubuntu-22.04
1515 steps :
16- - uses : actions/checkout@v4
16+ - uses : actions/checkout@v6
1717
1818# Paths changes filter. Detects if there's been a change to any files defined in the filter:
19- - uses : dorny/paths-filter@v3
19+ - uses : dorny/paths-filter@v4
2020 id : filter
2121 with :
2222 base : ${{ github.ref }}
@@ -26,11 +26,11 @@ jobs:
2626
2727# Retrieve po4a installation cache or create it if not found:
2828 - name : Check for po4a cache
29- uses : actions/cache@v4
29+ uses : actions/cache@v5
3030 id : cache-po4a
3131 with :
3232 path : " ~/po4a"
33- key : ${{ runner.os }}-po4a-0.68
33+ key : ${{ runner.os }}-po4a-${{ hashFiles('_po4a-tools/po4a-cache.sh') }}
3434 - name : Install or retrieve po4a from cache
3535 env :
3636 CACHE_HIT : ${{steps.cache-po4a.outputs.cache-hit}}
4646# This step only runs if a PR is merged:
4747 - name : Push changes to repo if action triggered on:push and .po files need updating
4848 if : ${{ ( github.event_name == 'push' && steps.filter.outputs.src_files_changed == 'true' ) || ( github.event_name == 'workflow_dispatch' && steps.filter.outputs.src_files_changed == 'true' ) }}
49- uses : EndBug/add-and-commit@v9
49+ uses : EndBug/add-and-commit@v10
5050 with :
5151 default_author : github_actions
5252 message : ' AUTO: Updated .po files'
6666 - name : Zip Website
6767 if : ${{ github.event_name == 'pull_request' }}
6868 run : zip -r ${{ github.workspace }}/website.zip _site/*
69- - uses : actions/upload-artifact@v4
69+ - uses : actions/upload-artifact@v7
7070 name : Upload Website
7171 if : ${{ github.event_name == 'pull_request' }}
7272 with :
0 commit comments