diff --git a/.github/workflows/codespell-private.yml b/.github/workflows/codespell-private.yml index 22211da492..823630950b 100644 --- a/.github/workflows/codespell-private.yml +++ b/.github/workflows/codespell-private.yml @@ -51,6 +51,8 @@ jobs: - run: codespell --version - run: make check - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} # tomli should not be required for the next two steps (and make sure it's not) - run: pip uninstall -yq tomli if: ${{ matrix.no-toml == 'no-toml' }} diff --git a/.github/workflows/codespell-windows.yml b/.github/workflows/codespell-windows.yml index 6708b47de9..4bb12b2045 100644 --- a/.github/workflows/codespell-windows.yml +++ b/.github/workflows/codespell-windows.yml @@ -26,3 +26,5 @@ jobs: - run: codespell --version - run: pytest codespell_lib - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }}