From d533aa4056ad3dec50df2ba2f27ff5115e8900f5 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 16 Sep 2023 17:06:07 +0100 Subject: [PATCH] Bump GitHub Actions to latest versions This avoids deprecation of Node 12 (which Actions warn about already) and Note 16 which is likely to come soon given that it is now also beyond end of life. --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95ef2a7..1f3555e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,14 +14,14 @@ jobs: os: [ubuntu-latest] python: [3.9, "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} - name: Create virtualenv run: python3 -m venv venv - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: venv/ key: ${{ runner.os }}-${{ matrix.python }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}