From 88f70482b2f1fd27ee731a1685e59e91595b259f Mon Sep 17 00:00:00 2001 From: drfho Date: Mon, 5 Dec 2022 07:34:08 +0100 Subject: [PATCH] Update tests.yml update actions --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index deef8998c..0e95674cb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: - - linux + - ubuntu config: - "3.6" # For CentOS 7 deployments - "3.7" @@ -27,13 +27,13 @@ jobs: runs-on: ${{ matrix.os }}-latest name: ${{ matrix.os }}-${{ matrix.config }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.config }} - name: Pip cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.config }}-${{ hashFiles('setup.*', 'requirements*') }}