From 7f6a42956c93fedc69ddc974b16e54ce7bc91d9d Mon Sep 17 00:00:00 2001 From: Rafael Sene Date: Tue, 5 Nov 2024 04:54:30 -0800 Subject: [PATCH] Update the versions of all GitHub Actions, as the old ones are using Node 12, which is deprecated. (#312) --- .github/workflows/python-app.yml | 4 ++-- .github/workflows/tests.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 0a84dc1d..78e4bbf1 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -18,10 +18,10 @@ jobs: python-version: ['3.9', '3.10', '3.11', '3.12','3.13'] steps: - - 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 }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ec761d8a..65395eb1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,10 +18,10 @@ jobs: python-version: ['3.9', '3.10', '3.11', '3.12','3.13'] steps: - - 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 }} @@ -40,4 +40,4 @@ jobs: run: coverage xml - name: Upload coverage report - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v4