1313 runs-on : ubuntu-latest
1414
1515 steps :
16- - uses : actions/checkout@v4
16+ - uses : actions/checkout@v6
1717 - name : Set up Python 3.11
18- uses : actions/setup-python@v5
18+ uses : actions/setup-python@v6
1919 with :
2020 python-version : " 3.11"
2121 - uses : pre-commit/action@v3.0.1
4141 name : " pytest: py${{ matrix.python-version }}, sphinx${{ matrix.sphinx }}, on ${{ matrix.os }}"
4242
4343 steps :
44- - uses : actions/checkout@v4
44+ - uses : actions/checkout@v6
4545 - name : Set up Python ${{ matrix.python-version }}
46- uses : actions/setup-python@v5
46+ uses : actions/setup-python@v6
4747 with :
4848 python-version : ${{ matrix.python-version }}
4949 allow-prereleases : true
@@ -55,15 +55,16 @@ jobs:
5555 run : |
5656 pytest --cov=myst_parser --cov-report=xml --cov-report=term-missing
5757 coverage xml
58- - name : Upload to Codecov
59- if : github.repository == 'executablebooks/MyST-Parser' && matrix.python-version == 3.11 && matrix.os == 'ubuntu-latest'
60- uses : codecov/codecov-action@v4
61- with :
62- token : ${{ secrets.CODECOV_TOKEN }}
63- name : myst-parser-pytests
64- flags : pytests
65- file : ./coverage.xml
66- fail_ci_if_error : true
58+ # TODO there is currently problem with this action and pull-requests from external forks
59+ # - name: Upload to Codecov
60+ # if: github.repository == 'executablebooks/MyST-Parser' && matrix.python-version == 3.11 && matrix.os == 'ubuntu-latest'
61+ # uses: codecov/codecov-action@v4
62+ # with:
63+ # token: ${{ secrets.CODECOV_TOKEN }}
64+ # name: myst-parser-pytests
65+ # flags: pytests
66+ # file: ./coverage.xml
67+ # fail_ci_if_error: true
6768
6869 check-myst-docutils :
6970
7778
7879 steps :
7980 - name : Checkout source
80- uses : actions/checkout@v4
81+ uses : actions/checkout@v6
8182 - name : Set up Python 3.11
82- uses : actions/setup-python@v5
83+ uses : actions/setup-python@v6
8384 with :
8485 python-version : " 3.11"
8586 - name : Install setup
@@ -132,9 +133,9 @@ jobs:
132133 runs-on : ubuntu-latest
133134 steps :
134135 - name : Checkout source
135- uses : actions/checkout@v4
136+ uses : actions/checkout@v6
136137 - name : Set up Python 3.11
137- uses : actions/setup-python@v5
138+ uses : actions/setup-python@v6
138139 with :
139140 python-version : " 3.11"
140141 - name : install flit
@@ -155,9 +156,9 @@ jobs:
155156 runs-on : ubuntu-latest
156157 steps :
157158 - name : Checkout source
158- uses : actions/checkout@v4
159+ uses : actions/checkout@v6
159160 - name : Set up Python 3.11
160- uses : actions/setup-python@v5
161+ uses : actions/setup-python@v6
161162 with :
162163 python-version : " 3.11"
163164 - name : install flit and tomlkit
0 commit comments