From cfef5c9aa4f727027731fac56b384e7e46ae078b Mon Sep 17 00:00:00 2001 From: J08nY Date: Thu, 2 Oct 2025 19:45:32 +0200 Subject: Bump actions and fix codecov. --- .github/workflows/test.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9325ca..7285b84 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,10 +15,10 @@ jobs: env: PYTHON: ${{ matrix.python-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: submodules: true - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: pip-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }} @@ -26,7 +26,7 @@ jobs: pip-${{ runner.os }}-${{ matrix.python-version }}- pip-${{ runner.os }}- - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install system dependencies @@ -52,5 +52,7 @@ jobs: run: | cd test && make test && cd .. - name: Code coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v5 if: ${{ matrix.python-version == 3.9 }} + with: + token: ${{ secrets.CODECOV_TOKEN }} -- cgit v1.3.1