Skip to content

Commit

Permalink
ci: fix cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
seandstewart committed Jun 20, 2024
1 parent dea8040 commit dca1e3d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/actions/bootstrap-environ/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ runs:
- uses: actions/cache@v4
with:
path: ~/.cache/
key: |
${{ inputs.runner.name }}-
${{ inputs.python-version }}-
${{ hashFiles('poetry.lock') }}-
${{ hashFiles('.pre-commit-config.yaml') }}
key: ${{ inputs.runner }}|${{ inputs.python-version }}|${{ hashFiles('poetry.lock') }}|${{ hashFiles('.pre-commit-config.yaml') }}
- run: poetry --version
shell: bash
- run: make install
Expand Down

0 comments on commit dca1e3d

Please sign in to comment.