Skip to content

Commit

Permalink
Merge pull request #405 from freqtrade/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/cache-4

Bump actions/cache from 3 to 4
  • Loading branch information
xmatthias authored Jan 22, 2024
2 parents 7148623 + 418c9ec commit 64382a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Cache_dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: cache
with:
path: ~/dependencies/
key: ${{ runner.os }}-dependencies

- name: pip cache (linux)
uses: actions/cache@v3
uses: actions/cache@v4
if: startsWith(matrix.os, 'ubuntu')
with:
path: ~/.cache/pip
key: test-${{ matrix.os }}-${{ matrix.python-version }}-pip

- name: pip cache (macOS)
uses: actions/cache@v3
uses: actions/cache@v4
if: startsWith(matrix.os, 'macOS')
with:
path: ~/Library/Caches/pip
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Pip cache (Windows)
uses: actions/cache@v3
uses: actions/cache@v4
if: startsWith(runner.os, 'Windows')
with:
path: ~\AppData\Local\pip\Cache
Expand Down

0 comments on commit 64382a6

Please sign in to comment.