@@ -13,12 +13,12 @@ jobs:
1313 runs-on : ubuntu-latest
1414
1515 steps :
16- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v4
1717 - name : Set up Python
18- uses : actions/setup-python@v1
18+ uses : actions/setup-python@v5
1919 with :
20- python-version : 3.7
21- - uses : pre-commit/action@v2 .0.0
20+ python-version : 3.9
21+ - uses : pre-commit/action@v3 .0.1
2222
2323 tests :
2424 runs-on : ${{ matrix.os }}
@@ -28,10 +28,10 @@ jobs:
2828 os : [ubuntu-latest, windows-latest]
2929
3030 steps :
31- - uses : actions/checkout@v2
31+ - uses : actions/checkout@v4
3232
3333 - name : Set up Python ${{ matrix.python-version }}
34- uses : actions/setup-python@v2
34+ uses : actions/setup-python@v5
3535 with :
3636 python-version : ${{ matrix.python-version }}
3737
@@ -46,22 +46,23 @@ jobs:
4646 run : |
4747 pytest --cov=mdformat_deflist --cov-report=xml --cov-report=term-missing
4848
49- - name : Upload to Codecov
50- if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7
51- uses : codecov/codecov-action@v1
52- with :
53- name : pytests-py3.7
54- flags : pytests
55- file : ./coverage.xml
56- fail_ci_if_error : true
49+ # FYI: credentials are not configured. Turned off for now
50+ # - name: Upload to Codecov
51+ # if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7
52+ # uses: codecov/codecov-action@v1
53+ # with:
54+ # name: pytests-py3.7
55+ # flags: pytests
56+ # file: ./coverage.xml
57+ # fail_ci_if_error: true
5758
5859 pre-commit-hook :
5960 runs-on : ubuntu-latest
6061
6162 steps :
62- - uses : actions/checkout@v2
63+ - uses : actions/checkout@v4
6364 - name : Set up Python
64- uses : actions/setup-python@v2
65+ uses : actions/setup-python@v5
6566 with :
6667 python-version : 3.7
6768
8182 runs-on : ubuntu-latest
8283 steps :
8384 - name : Checkout source
84- uses : actions/checkout@v2
85+ uses : actions/checkout@v4
8586 - name : Set up Python 3.7
86- uses : actions/setup-python@v1
87+ uses : actions/setup-python@v5
8788 with :
8889 python-version : 3.7
8990 - name : install flit
0 commit comments