Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
shell: bash

- name: Cache pyenv folder
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.pyenv
key: ${{ runner.os }}-pyenv-${{ env.PYTHON_VERSION }}
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Cache venv folder
id: cache-venv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: venv
key: ${{ runner.os }}-venv-${{ env.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }}
Expand All @@ -40,7 +40,7 @@ jobs:

- name: Cache pip packages
id: cache-pip
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Cache build Artifacts
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: build
key: ${{ runner.os }}-build-${{ github.sha }}
Expand Down Expand Up @@ -82,31 +82,31 @@ jobs:
uses: actions/checkout@v4

- name: Restore pyenv cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.pyenv
key: ${{ runner.os }}-pyenv-${{ env.PYTHON_VERSION }}
restore-keys: |
${{ runner.os }}-pyenv-

- name: Restore venv cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: venv
key: ${{ runner.os }}-venv-${{ env.PYTHON_VERSION }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-venv-${{ env.PYTHON_VERSION }}

- name: Restore pip packages cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-${{ env.PYTHON_VERSION }}-

- name: Restore build Artifacts cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: build
key: ${{ runner.os }}-build-${{ github.sha }}
Expand Down