1313 runs-on : ubuntu-latest
1414
1515 steps :
16- - uses : actions/checkout@v3
17- - uses : actions/setup-python@v3
16+ - uses : actions/checkout@v4
17+ - uses : actions/setup-python@v5
1818 with :
1919 python-version : ' 3.11'
2020
@@ -33,15 +33,15 @@ jobs:
3333 runs-on : ${{ matrix.os }}
3434 strategy :
3535 matrix :
36- python-version : ['3.9', '3.10', '3.11', '3.12', '3.13-dev']
36+ python-version : ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14 -dev']
3737 os : [ubuntu-latest, macos-latest, windows-latest]
38- continue-on-error : ${{ matrix.python-version == '3.13 -dev' }}
38+ continue-on-error : ${{ matrix.python-version == '3.14 -dev' }}
3939
4040 steps :
41- - uses : actions/checkout@v3
41+ - uses : actions/checkout@v4
4242
4343 - name : Set up Python ${{ matrix.python-version }}
44- uses : actions/setup-python@v3
44+ uses : actions/setup-python@v5
4545 with :
4646 python-version : ${{ matrix.python-version }}
4747
5555
5656 - name : Report coverage
5757 if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
58- uses : codecov/codecov-action@v2
58+ uses : codecov/codecov-action@v4
59+ with :
60+ token : ${{ secrets.CODECOV_TOKEN }}
5961
6062 allgood :
6163 runs-on : ubuntu-latest
7173 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
7274 runs-on : ubuntu-latest
7375 steps :
74- - uses : actions/checkout@v3
75- - uses : actions/setup-python@v3
76+ - uses : actions/checkout@v4
77+ - uses : actions/setup-python@v5
7678 with :
7779 python-version : ' 3.x'
7880 - name : Install build and publish tools
0 commit comments