Skip to content

Commit

Permalink
Merge pull request #579 from globus/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/setup-python-4

Bump actions/setup-python from 3 to 4
  • Loading branch information
sirosen committed Jun 13, 2022
2 parents f2da4a2 + facdac9 commit d6d2af9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/build.yaml
Expand Up @@ -11,15 +11,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: python -m pip install -U tox
- run: tox -e pylint

mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: python -m pip install -U tox
- run: tox -e mypy,mypy-mindeps,mypy-test

Expand All @@ -39,7 +43,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install tox
Expand All @@ -51,7 +55,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: python -m pip install -U tox
- run: tox -e test-lazy-imports

Expand All @@ -60,7 +66,7 @@ jobs:
name: "mindeps"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.6"
- name: install tox
Expand All @@ -72,7 +78,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install tox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_pr_references.yaml
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: actions/setup-python@v4
- name: update any PR numbers in change fragments
run: |
python ./changelog.d/update-pr-refs.py
Expand Down

0 comments on commit d6d2af9

Please sign in to comment.