Skip to content

Commit 271567a

Browse files
authored
Merge pull request #1157 from rffontenelle/patch-1
2 parents f535854 + bb29e9a commit 271567a

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,14 @@ jobs:
1717
- linkcheck
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121

2222
- name: Set up Python
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: 3.9
26-
27-
- name: pip cache
28-
uses: actions/cache@v2
29-
with:
30-
path: ~/.cache/pip
31-
key:
32-
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('noxfile.py') }}
33-
restore-keys: |
34-
${{ matrix.os }}-${{ matrix.python-version }}-
26+
cache: 'pip'
27+
cache-dependency-path: 'requirements.txt'
3528

3629
- name: Install dependencies
3730
run: |

.github/workflows/translation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818

1919
steps:
2020
- name: Grab the repo src
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
fetch-depth: 0 # To reach the common commit
2424
- name: Set up git user as [bot]
2525
# Refs:
2626
# * https://github.community/t/github-actions-bot-email-address/17204/6
2727
# * https://github.com/actions/checkout/issues/13#issuecomment-724415212
28-
uses: fregante/setup-git-user@v1.0.1
28+
uses: fregante/setup-git-user@v1.1.0
2929

3030
- name: Switch to the translation source branch
3131
run: |
@@ -50,7 +50,7 @@ jobs:
5050
git merge '${{ github.event.repository.default_branch }}'
5151
5252
- name: Set up Python
53-
uses: actions/setup-python@v2
53+
uses: actions/setup-python@v4
5454
with:
5555
python-version: >-
5656
3.10

0 commit comments

Comments
 (0)