Skip to content

Commit ceae5a5

Browse files
committed
update checkout tags
1 parent 2a45429 commit ceae5a5

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

.github/workflows/linting.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,22 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98
strategy:
109
max-parallel: 4
1110
matrix:
1211
python-version: ["3.10"]
1312

1413
steps:
15-
- uses: actions/checkout@v3
16-
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
18-
with:
19-
python-version: ${{ matrix.python-version }}
20-
cache: pip
21-
- name: Install dependencies
22-
run: |
23-
pip install -e .
24-
pip install hatch
25-
- name: Lint
26-
run: hatch run lint:all
14+
- uses: actions/checkout@v4
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
cache: pip
20+
- name: Install dependencies
21+
run: |
22+
pip install -e .
23+
pip install hatch
24+
- name: Lint
25+
run: hatch run lint:all

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
cache: pip

0 commit comments

Comments
 (0)