Skip to content

Commit 76b0547

Browse files
authored
Merge pull request #474 from OpenDataServices/2024-12-19
GitHub CI: No cache, update V of checkout and setup-python
2 parents ec0e00b + 782b4ae commit 76b0547

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,12 @@ jobs:
55
lint:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v2
8+
- uses: actions/checkout@v4
99
- name: Setup python
10-
uses: actions/setup-python@v2
10+
uses: actions/setup-python@v5
1111
with:
1212
python-version: 3.12
1313
architecture: x64
14-
- uses: actions/cache@v1
15-
with:
16-
path: ~/.cache/pip
17-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}-${{ matrix.python-version }}
18-
restore-keys: |
19-
${{ runner.os }}-pip-
2014
- run: pip install --upgrade -r requirements_dev.txt
2115
- run: black --check *.py */
2216
- run: isort --check-only *.py */

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13']
1010
jsonref-version: ["==0.3", ">1"]
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Setup python
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
architecture: x64

0 commit comments

Comments
 (0)