Skip to content

Commit 2ba6d0a

Browse files
author
Michael Kryukov
committed
fix: use newer actions and corrected tests on windows
1 parent 796d887 commit 2ba6d0a

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ jobs:
1616
matrix:
1717
os: [windows-latest, ubuntu-latest]
1818
python-version: ["3.8", "3.10", "3.12"]
19+
defaults:
20+
run:
21+
shell: bash
1922
steps:
20-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@v4
2124
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v1
25+
uses: actions/setup-python@v5
2326
with:
2427
python-version: ${{ matrix.python-version }}
2528
- name: Install Poetry

.github/workflows/deploy.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ jobs:
1111
max-parallel: 4
1212
matrix:
1313
python-version: ["3.11"]
14-
1514
steps:
16-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1716
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v5
1918
with:
2019
python-version: ${{ matrix.python-version }}
2120
- name: Install Poetry

0 commit comments

Comments
 (0)