From 458b273a39a921c9ad446bb684d98778f6184600 Mon Sep 17 00:00:00 2001 From: Adrien Barbaresi Date: Wed, 3 Apr 2024 14:24:34 +0200 Subject: [PATCH] downgrade actions setup --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5325de9..f087069 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,7 +43,7 @@ jobs: steps: # Python and pip setup - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -55,7 +55,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: pip cache - uses: actions/cache@v4 + uses: actions/cache@v2 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -63,7 +63,7 @@ jobs: ${{ runner.os }}-pip- # package setup - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 - name: Install dependencies if: matrix.python-version != '3.6' && matrix.python-version != '3.7'