Skip to content

Commit 17b65b9

Browse files
authored
Upgrade GitHub Actions (#919)
New versions use Node 16.
1 parent 4508ff8 commit 17b65b9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
DB_PASSWORD: hunter2
5050

5151
steps:
52-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v3
5353

54-
- uses: actions/setup-python@v2
54+
- uses: actions/setup-python@v3
5555
with:
5656
python-version: ${{ matrix.python-version }}
5757
cache: pip
@@ -71,7 +71,7 @@ jobs:
7171
run: tox --py current
7272

7373
- name: Upload coverage data
74-
uses: actions/upload-artifact@v2
74+
uses: actions/upload-artifact@v3
7575
with:
7676
name: coverage-data
7777
path: '.coverage.*'
@@ -81,17 +81,17 @@ jobs:
8181
runs-on: ubuntu-20.04
8282
needs: tests
8383
steps:
84-
- uses: actions/checkout@v2
84+
- uses: actions/checkout@v3
8585

86-
- uses: actions/setup-python@v2
86+
- uses: actions/setup-python@v3
8787
with:
8888
python-version: '3.10'
8989

9090
- name: Install dependencies
9191
run: python -m pip install --upgrade coverage[toml]
9292

9393
- name: Download data
94-
uses: actions/download-artifact@v2
94+
uses: actions/download-artifact@v3
9595
with:
9696
name: coverage-data
9797

@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Upload HTML report
105105
if: ${{ failure() }}
106-
uses: actions/upload-artifact@v2
106+
uses: actions/upload-artifact@v3
107107
with:
108108
name: html-report
109109
path: htmlcov

0 commit comments

Comments
 (0)