From 60d291ef19537d07085a732ba24e9f8713ded9ed Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Tue, 13 Feb 2024 13:27:37 -0500 Subject: [PATCH] ci: update actions --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 230de0b..a9faed3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: python-version: [ '3.9', '3.11' ] steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 name: Set up Python with: python-version: ${{ matrix.python-version }} @@ -21,4 +21,6 @@ jobs: - name: Test run: poetry run pytest -svv --cov=fasta_checksum_utils --cov-branch - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}