Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Mar 11, 2024
1 parent 9234d1b commit 8385e4a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Cache Python modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/poetry.lock') }}
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
with:
python-version: "3.10"
- name: Cache Python modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/Pipfile.lock') }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
with:
python-version: "3.10"
- name: Cache Python modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/Pipfile.lock') }}
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip caching
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip caching
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -235,13 +235,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
- name: Cache Playwright browsers
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright/
key: ${{ runner.os }}-playwright
Expand Down

0 comments on commit 8385e4a

Please sign in to comment.