Skip to content

Commit c164f66

Browse files
committed
chore: update poetry and deps
1 parent d72c995 commit c164f66

File tree

3 files changed

+511
-372
lines changed

3 files changed

+511
-372
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,21 @@ jobs:
1111
python-version: ['3.10']
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

2121
- uses: Gr1N/setup-poetry@v9
22+
with:
23+
poetry-version: "2.1.1"
2224

2325
- name: Check dependencies
2426
run: make doctor
2527

26-
- uses: actions/cache@v2
28+
- uses: actions/cache@v4
2729
with:
2830
path: .venv
2931
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $(DEPENDENCIES): poetry.lock
4040

4141
ifndef CI
4242
poetry.lock: pyproject.toml
43-
poetry lock --no-update
43+
poetry lock
4444
@ touch $@
4545
endif
4646

0 commit comments

Comments
 (0)