Skip to content

Commit 14bb738

Browse files
committed
chore: Sync with WeblateOrg/meta
1 parent d14ef4e commit 14bb738

File tree

7 files changed

+21
-16
lines changed

7 files changed

+21
-16
lines changed

.github/renovate.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
":dependencyDashboard",
6+
"helpers:pinGitHubActionDigests"
7+
],
28
"labels": [
39
"dependencies"
410
],
511
"rangeStrategy": "widen",
6-
"dependencyDashboard": true,
712
"automerge": true,
813
"automergeType": "pr",
914
"automergeStrategy": "rebase",

.github/workflows/closing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-24.04
2525
steps:
2626
- name: Add closed question comment
27-
uses: peter-evans/create-or-update-comment@v4
27+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
2828
if: |
2929
github.actor != 'renovate[bot]' &&
3030
github.event.issue.state_reason == 'completed' &&
@@ -42,7 +42,7 @@ jobs:
4242
* In case you see a similar problem, please open a separate issue.
4343
* If you are happy with the outcome, don’t hesitate to support Weblate by making a [donation](https://weblate.org/donate/).
4444
- name: Add closed issue comment
45-
uses: peter-evans/create-or-update-comment@v4
45+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
4646
if: |
4747
github.actor != 'renovate[bot]' &&
4848
github.event.issue.state_reason == 'completed' &&

.github/workflows/label-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Sync labels
2222
runs-on: ubuntu-24.04
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: srealmoreno/label-sync-action@v2
24+
- uses: actions/checkout@v4 # v4
25+
- uses: srealmoreno/label-sync-action@850ba5cef2b25e56c6c420c4feed0319294682fd # v2
2626
with:
2727
clean-labels: true

.github/workflows/labels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-24.04
2121
steps:
2222
- name: Add backlog comment
23-
uses: peter-evans/create-or-update-comment@v4
23+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
2424
if: ${{ github.event.label.name == 'backlog' }}
2525
with:
2626
token: ${{ secrets.GITHUB_TOKEN }}
@@ -33,7 +33,7 @@ jobs:
3333
In case you need this feature soon, please consider helping
3434
or push it by [funding the development](https://weblate.org/support/).
3535
- name: Add undecided comment
36-
uses: peter-evans/create-or-update-comment@v4
36+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
3737
if: ${{ github.event.label.name == 'undecided' }}
3838
with:
3939
token: ${{ secrets.GITHUB_TOKEN }}
@@ -46,7 +46,7 @@ jobs:
4646
4747
Please try to clarify the use case or consider proposing something more generic to make it useful to more users.
4848
- name: Add question comment
49-
uses: peter-evans/create-or-update-comment@v4
49+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
5050
if: ${{ github.event.label.name == 'question' }}
5151
with:
5252
token: ${{ secrets.GITHUB_TOKEN }}
@@ -63,7 +63,7 @@ jobs:
6363
6464
In case your question is already answered, [making a donation](https://weblate.org/donate/) is the right way to say thank you!
6565
- name: Add translate-toolkit comment
66-
uses: peter-evans/create-or-update-comment@v4
66+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
6767
if: ${{ github.event.label.name == 'translate-toolkit' }}
6868
with:
6969
token: ${{ secrets.GITHUB_TOKEN }}
@@ -72,7 +72,7 @@ jobs:
7272
The issue you've reported needs to be addressed in the [translate-toolkit](https://github.com/translate/translate/).
7373
Please file the issue there, and include links to any relevant specifications about the formats (if applicable).
7474
- name: Add good first issue comment
75-
uses: peter-evans/create-or-update-comment@v4
75+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4
7676
if: ${{ github.event.label.name == 'good first issue' }}
7777
with:
7878
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
runs-on: ubuntu-24.04
2121

2222
steps:
23-
- uses: actions/checkout@v4
24-
- uses: actions/cache@v4
23+
- uses: actions/checkout@v4 # v4
24+
- uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4
2525
with:
2626
path: ~/.cache/pre-commit
2727
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
2828
- name: Setup Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
3030
with:
3131
python-version: '3.13'
32-
- uses: astral-sh/setup-uv@v5
32+
- uses: astral-sh/setup-uv@4db96194c378173c656ce18a155ffc14a9fc4355 # v5
3333
- name: detect method
3434
id: detect
3535
run: |

.github/workflows/pull_requests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Weblate automerge
2323
if: github.actor == 'weblate'
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2626
- name: Enable Pull Request Automerge
2727
run: gh pr merge --rebase --auto "${{ github.event.pull_request.number }}"
2828
env:

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
pull-requests: write
2727

2828
steps:
29-
- uses: actions/stale@v9
29+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
3030
with:
3131
days-before-pr-stale: 30
3232
days-before-pr-close: 14

0 commit comments

Comments
 (0)