Skip to content

Commit

Permalink
downgrade actions setup
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Apr 3, 2024
1 parent c77fe72 commit 458b273
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -55,15 +55,15 @@ 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') }}
restore-keys: |
${{ 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'
Expand Down

0 comments on commit 458b273

Please sign in to comment.