Skip to content

Commit

Permalink
Update workflows to not use removed requirements.dev.txt in the cache…
Browse files Browse the repository at this point in the history
… key
  • Loading branch information
digitaldogsbody committed Nov 11, 2022
1 parent 0a21fb0 commit 3f05639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.dev.txt') }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/cache@v2
with:
path: ~/.cache/pip-docs
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.dev.txt') }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 3f05639

Please sign in to comment.