Skip to content

Commit

Permalink
remove pip cache and fix virtual cache key typo
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 595647529
Change-Id: Ibf6bbdfb27db966f54bc0ca7b5f07c2c74acce74
  • Loading branch information
jagapiou authored and Copybara-Service committed Jan 4, 2024
1 parent 3d5db3b commit dbeff73
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/actions/install-concordia/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ runs:
- name: Set up Python ${{ inputs.python-version }}
id: setup-python
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
with:
python-version: ${{ inputs.python-version }}
cache: 'pip'
cache-dependency-path: setup.py

- name: Restore Concordia installation
id: restore
Expand All @@ -39,7 +35,7 @@ runs:
path: venv
key: install-concordia-${{ steps.os-info.outputs.name }}-${{ steps.os-info.outputs.version }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('setup.py') }}
restore-keys: |
install-concordia-${{ steps.os-info.outputs.name }}-${{ steps.os-info.outputs.version }}-py${{ steps.os-info.outputs.version }}-py${{ steps.setup-python.outputs.python-version }}-
install-concordia-${{ steps.os-info.outputs.name }}-${{ steps.os-info.outputs.version }}-py${{ steps.setup-python.outputs.python-version }}-
- name: Install Concordia
if: steps.restore.outputs.cache-hit != 'true'
Expand Down

0 comments on commit dbeff73

Please sign in to comment.