@@ -12,30 +12,45 @@ jobs:
1212 user_manual :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
15+ - name : Checkout repository
16+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+ with :
18+ persist-credentials : false
19+
20+ - uses : actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
21+ with :
22+ python-version : ' 3.13'
1623
17- - uses : ammaraskar/sphinx-action@master
24+ - uses : ammaraskar/sphinx-action@54e52bfb642e9b60ea5b6bcb05fe3f74b40d290a # v8.2.3
1825 with :
1926 docs-folder : " user_manual/"
20- pre-build-command : pip install -r requirements.txt
21- build-command : make gettext
27+ pre-build-command : " pip install -r requirements.txt"
28+ build-command : " make gettext"
29+
30+ - name : Change file owner to correct user
31+ run : |
32+ ls -la user_manual/locale/source
33+ sudo chown -R 1001:1001 user_manual/locale/source
34+ ls -la user_manual/locale/source
2235
23- - uses : peter-evans/create-pull-request@v7
36+ - uses : peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
2437 id : cpr
2538 with :
2639 token : ${{ secrets.COMMAND_BOT_PAT }}
27- commit-message : " chore(l10n): Updates catalog templates (POT files fetched automatically by transifex)"
28- title : Updates catalog templates
29- branch : update-l10n
40+ commit-message : ' chore(l10n): Updates catalog templates (POT files fetched automatically by transifex)'
41+ committer : GitHub <[email protected] > 42+ author : nextcloud-command <[email protected] > 3043 signoff : true
44+ branch : ' automated/noid/update-l10n'
45+ title : ' Updates catalog templates'
3146
32- 47+ - uses : hmarr/auto-approve-action@f0939ea97e9205ef24d872e76833fa908a770363 # v4.0.0
3348 if : steps.cpr.outputs.pull-request-operation == 'created'
3449 with :
3550 github-token : " ${{ secrets.GITHUB_TOKEN }}"
3651 pull-request-number : ${{ steps.cpr.outputs.pull-request-number }}
3752
38- -
uses :
pascalgn/[email protected] 53+ - uses : pascalgn/automerge-action@7961b8b5eec56cc088c140b56d864285eabd3f67 # v0.16.4
3954 if : steps.cpr.outputs.pull-request-operation == 'created'
4055 env :
4156 GITHUB_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
0 commit comments