From 67a7dd5399810d75587a163e822ac1d93fef85d5 Mon Sep 17 00:00:00 2001 From: Oliver Mannion <125105+tekumara@users.noreply.github.com> Date: Sun, 10 Mar 2024 12:09:15 +1100 Subject: [PATCH] ci: bump acions --- .github/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ddf000..b808ad3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,17 +8,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.11 + - uses: actions/checkout@v4gs + + - name: Set up Python id: setup-python - uses: actions/setup-python@v2 - with: - python-version: "3.11" + uses: actions/setup-python@v5 - name: Cache virtualenv id: cache-venv - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: .venv - key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('setup.py') }} + key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv - name: make test run: make test