|
11 | 11 | os: [ubuntu-latest, macos-latest, windows-latest] |
12 | 12 | python-version: [3.5, 3.6, 3.7, 3.8, pypy3] |
13 | 13 | steps: |
14 | | - - uses: actions/checkout@v2 |
| 14 | + - uses: actions/checkout@v4 |
15 | 15 | - name: Set up Python ${{ matrix.python-version }} |
16 | | - uses: actions/setup-python@v2 |
| 16 | + uses: actions/setup-python@v5 |
17 | 17 | with: |
18 | 18 | python-version: ${{ matrix.python-version }} |
19 | 19 | - name: Install dependencies |
|
39 | 39 | run: | |
40 | 40 | python -m flake8 |
41 | 41 | - name: Upload coverage to Codecov |
42 | | - uses: codecov/codecov-action@v1 |
| 42 | + uses: codecov/codecov-action@v5 |
43 | 43 |
|
44 | 44 | test-mypy: |
45 | 45 | runs-on: ${{ matrix.os }} |
|
48 | 48 | os: [ubuntu-latest, macos-latest, windows-latest] |
49 | 49 | python-version: [3.6, 3.8] |
50 | 50 | steps: |
51 | | - - uses: actions/checkout@v2 |
| 51 | + - uses: actions/checkout@v4 |
52 | 52 | - name: Set up Python ${{ matrix.python-version }} |
53 | | - uses: actions/setup-python@v2 |
| 53 | + uses: actions/setup-python@v5 |
54 | 54 | with: |
55 | 55 | python-version: ${{ matrix.python-version }} |
56 | 56 | - name: Install dependencies |
|
68 | 68 | os: [ubuntu-latest, macos-latest, windows-latest] |
69 | 69 | python-version: [2.7] |
70 | 70 | steps: |
71 | | - - uses: actions/checkout@v2 |
| 71 | + - uses: actions/checkout@v4 |
72 | 72 | - name: Set up Python ${{ matrix.python-version }} |
73 | | - uses: actions/setup-python@v2 |
| 73 | + uses: actions/setup-python@v5 |
74 | 74 | with: |
75 | 75 | python-version: ${{ matrix.python-version }} |
76 | 76 | - name: Install dependencies |
|
93 | 93 | python -m coverage run --branch setup.py test |
94 | 94 | python -m coverage xml -i |
95 | 95 | - name: Upload coverage to Codecov |
96 | | - uses: codecov/codecov-action@v1 |
| 96 | + uses: codecov/codecov-action@v5 |
0 commit comments