Skip to content

Commit 976a89f

Browse files
committed
chore(ci): bump actions and cache key
1 parent c7b5624 commit 976a89f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/linters.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ jobs:
88
name: Linters
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- uses: actions/setup-python@v4
1313
with:
1414
python-version: '3.12.3'
1515
- name: Cache pip
16-
uses: actions/cache@v2
16+
uses: actions/cache@v4
1717
with:
1818
path: venv
19-
key: pip-v1-${{ hashFiles('dev-requirements.txt') }}
19+
key: pip-v2-${{ hashFiles('dev-requirements.txt') }}
2020
restore-keys: |
21-
pip-v1-
21+
pip-v2-
2222
- name: Cache pre-commit
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: /tmp/pre-commit-cache
26-
key: pre-commit-v1-{{ hashFiles('.pre-commit-config.yaml') }}
26+
key: pre-commit-v2-{{ hashFiles('.pre-commit-config.yaml') }}
2727
restore-keys: |
2828
pre-commit-v1-
2929
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ jobs:
88
name: Tests
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- uses: actions/setup-python@v4
1313
with:
14-
python-version: '3.12'
14+
python-version: '3.12.3'
1515
- name: Cache pip
16-
uses: actions/cache@v2
16+
uses: actions/cache@v4
1717
with:
1818
path: venv
19-
key: pip-v1-${{ hashFiles('dev-requirements.txt') }}
19+
key: pip-v2-${{ hashFiles('dev-requirements.txt') }}
2020
restore-keys: |
21-
pip-v1-
21+
pip-v2-
2222
- name: Install dependencies
2323
run: make sync
2424
- name: Run the tests

0 commit comments

Comments
 (0)