Skip to content

Commit

Permalink
Merge pull request #475 from skalish/update-github-actions
Browse files Browse the repository at this point in the history
Update checkout and setup-python actions to v2
  • Loading branch information
pcattori committed Nov 24, 2020
2 parents 844c014 + adf8a06 commit aafbf97
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v1.1.1
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install poetry
Expand All @@ -25,13 +25,13 @@ jobs:
run: pip install nox==2020.5.24
- name: Run flake8
run: nox -s lint

Format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v1.1.1
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install poetry
Expand All @@ -44,9 +44,9 @@ jobs:
Typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v1.1.1
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install poetry
Expand All @@ -62,9 +62,9 @@ jobs:
python_version: [3.6, 3.7, 3.8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v1.1.1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- name: Install poetry
Expand All @@ -77,9 +77,9 @@ jobs:
Docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install python
uses: actions/setup-python@v1.1.1
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install nox
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
Publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v1.1.1
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install Poetry
Expand Down

0 comments on commit aafbf97

Please sign in to comment.