From 002f223eb122a9ad0ba276d2f2cee2a9e5560c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alban=20F=C3=A9ron?= Date: Sun, 19 May 2024 17:07:09 +0200 Subject: [PATCH] Update GitHub actions --- .github/workflows/tests.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3a68b88..78d8099 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -34,9 +34,9 @@ jobs: fail-fast: false steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -48,5 +48,7 @@ jobs: coverage run -m unittest coverage run -a -m unittest tests.net.suite - name: Upload coverage - uses: codecov/codecov-action@v1.0.15 + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} if: ${{ !cancelled() }}