Skip to content

Commit

Permalink
actions: use different cache keys for different python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielfalcao committed Mar 8, 2020
1 parent 25c8f1f commit 7c42444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-3.6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/cache@v1
with:
path: .venv
key: ${{ runner.os }}-${{ hashFiles('*.txt') }}
key: ${{ runner.os }}-${{ hashFiles('*.txt') }}-python3.6

- uses: actions/checkout@v1
- id: bento
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-3.7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/cache@v1
with:
path: .venv
key: ${{ runner.os }}-${{ hashFiles('*.txt') }}
key: ${{ runner.os }}-${{ hashFiles('*.txt') }}-python3.7

- uses: actions/checkout@v1
- id: bento
Expand Down

0 comments on commit 7c42444

Please sign in to comment.