Skip to content

Commit 8750538

Browse files
committed
modernized github actions
1 parent 46c2854 commit 8750538

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
python-version: ['3.9', '3.10', '3.11', '3.12'] # Maybe soon?, '3.13']
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 1
1820
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v3
21+
uses: actions/setup-python@v5
2022
with:
2123
python-version: ${{ matrix.python-version }}
2224
- name: Install dependencies
@@ -36,9 +38,9 @@ jobs:
3638
runs-on: ubuntu-latest
3739
timeout-minutes: 2
3840
steps:
39-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4042
- name: Set up Python
41-
uses: actions/setup-python@v3
43+
uses: actions/setup-python@v5
4244
with:
4345
python-version: '3.10'
4446
- name: Install dependencies

0 commit comments

Comments
 (0)