Skip to content

Commit

Permalink
update actions/checkout action to v4 (arska#19)
Browse files Browse the repository at this point in the history
Cherry picked from Commit: 132df1f [132df1f]
  • Loading branch information
renovate[bot] authored and gjdv committed Nov 25, 2023
1 parent 82c7a4b commit 262953c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
name: "run tox"
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
python-version: [3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -32,10 +32,10 @@ jobs:
runs-on: "ubuntu-latest"
needs: [test]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v4"
with:
python-version: "3.8"
python-version: "3.11"

- name: "Install pep517 and twine"
run: "python -m pip install pep517 twine"
Expand Down

0 comments on commit 262953c

Please sign in to comment.