Skip to content

Commit

Permalink
Update actions/checkout action to v4 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 5, 2023
1 parent fdfdc4c commit 410daa9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
PIP_DISABLE_PIP_VERSION_CHECK: 1
strategy:
matrix:
python-version: ["3.7", "3.9", "3.11"]
python-version: ["3.8", "3.10", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
show-progress: false

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
allow-prereleases: true
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "requirements.txt"
Expand All @@ -40,7 +43,7 @@ jobs:
run: "python -m build ."

- name: Upload distribution
if: matrix.python-version == '3.11'
if: matrix.python-version == '3.10'
uses: actions/upload-artifact@v3
with:
name: myloginpath-dist
Expand Down

0 comments on commit 410daa9

Please sign in to comment.