Skip to content

Commit

Permalink
Merge pull request #390 from joke2k/feature/update-actions
Browse files Browse the repository at this point in the history
Update actions
  • Loading branch information
sergeyklay committed Jun 13, 2022
2 parents f124ace + 02a2f37 commit ab66054
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2

- name: Set up Python 3.10
uses: actions/setup-python@v2.3.0
uses: actions/setup-python@v4.0.0
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip --use-feature=in-tree-build install tox tox-gh-actions
pip install tox tox-gh-actions
- name: Check MANIFEST.in for completeness
run: tox -e manifest
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Archive build artifacts
if: success()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
# To ensure that jobs don't overwrite existing artifacts,
# use a different name per job.
Expand All @@ -67,10 +67,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2

- name: Set up Python 3.10
uses: actions/setup-python@v2.2.2
uses: actions/setup-python@v4.0.0
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2
with:
fetch-depth: 5

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2.3.0
uses: actions/setup-python@v4.0.0
with:
python-version: ${{ matrix.python }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2

- name: Set up Python 3.10
uses: actions/setup-python@v2.3.0
uses: actions/setup-python@v4.0.0
with:
python-version: '3.10'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.2

- name: Set up Python 3.10
uses: actions/setup-python@v2.3.0
uses: actions/setup-python@v4.0.0
with:
python-version: '3.10'

Expand All @@ -41,7 +41,7 @@ jobs:

- name: Archive docs artifacts
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: docs
path: docs
Expand Down

0 comments on commit ab66054

Please sign in to comment.