From 271153649b3e39fb1887171d4f02eab819bb4dfc Mon Sep 17 00:00:00 2001 From: Stephane Thiell Date: Sun, 8 Sep 2024 18:57:36 -0700 Subject: [PATCH] GitHub Actions: update actions to their latest versions This is to address the warning about deprecated Node.js --- .github/workflows/nosetests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nosetests.yml b/.github/workflows/nosetests.yml index 9c367754..63a8b637 100644 --- a/.github/workflows/nosetests.yml +++ b/.github/workflows/nosetests.yml @@ -14,9 +14,9 @@ jobs: python-version: '3.6' name: Tests with Python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5.2.0 with: python-version: ${{ matrix.python-version }} - name: Install dependencies