From a24c834b9bc16c467fc9b566cfb67cbec7328579 Mon Sep 17 00:00:00 2001 From: cyschneck <22159116+cyschneck@users.noreply.github.com> Date: Wed, 8 May 2024 21:38:59 -0600 Subject: [PATCH] update action versions --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/pytests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 080e101..72283fd 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5 with: python-version: '3.12' diff --git a/.github/workflows/pytests.yml b/.github/workflows/pytests.yml index 01ed4e7..e7ce29f 100644 --- a/.github/workflows/pytests.yml +++ b/.github/workflows/pytests.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v5.0.0 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -41,7 +41,7 @@ jobs: path: pytest.xml - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.1.0 + uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: