From e482a515469ca9d375ba2cca4b41de63dd700eb4 Mon Sep 17 00:00:00 2001 From: Rodrigo Vargas Honorato Date: Tue, 21 May 2024 10:49:38 +0200 Subject: [PATCH] update `unittests.yml` (#116) --- .github/workflows/unittests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index dbf55dc..46f7410 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -7,11 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: recursive fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: 3.12 @@ -23,11 +23,11 @@ jobs: - run: poetry install --no-interaction --no-root - - uses: trunk-io/trunk-action@v1 + # - uses: trunk-io/trunk-action@v1 - run: poetry run pytest --cov=./ --cov-report=xml -v --disable-warnings - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml