Skip to content

Commit 410daa9

Browse files
Update actions/checkout action to v4 (#15)
1 parent fdfdc4c commit 410daa9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ jobs:
1313
PIP_DISABLE_PIP_VERSION_CHECK: 1
1414
strategy:
1515
matrix:
16-
python-version: ["3.7", "3.9", "3.11"]
16+
python-version: ["3.8", "3.10", "3.12"]
1717

1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
20+
with:
21+
show-progress: false
2022

2123
- name: Set up Python ${{ matrix.python-version }}
2224
uses: actions/setup-python@v4
2325
with:
26+
allow-prereleases: true
2427
python-version: ${{ matrix.python-version }}
2528
cache: "pip"
2629
cache-dependency-path: "requirements.txt"
@@ -40,7 +43,7 @@ jobs:
4043
run: "python -m build ."
4144

4245
- name: Upload distribution
43-
if: matrix.python-version == '3.11'
46+
if: matrix.python-version == '3.10'
4447
uses: actions/upload-artifact@v3
4548
with:
4649
name: myloginpath-dist

0 commit comments

Comments
 (0)