File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,18 +90,18 @@ jobs:
90
90
COMMIT=$(git merge-base ${GITHUB_BASE_REF:-pants} HEAD | head -n1)
91
91
echo MERGEBASE=${COMMIT}
92
92
echo "::set-output name=MERGEBASE::${COMMIT}"
93
- - name : Cache Pants Caches
93
+ - name : Cache Pants Caches (Python ${{ matrix.python-version }})
94
94
uses : actions/cache@v2
95
95
id : pants-cache
96
96
with :
97
97
path : |
98
98
~/.cache/pants/setup
99
99
~/.cache/pants/lmdb_store
100
100
~/.cache/pants/named_caches
101
- key : ${{ runner.os }}-pants-${{ github.sha }}
101
+ key : ${{ runner.os }}-pants-py${{ matrix.python-version }}- ${{ github.sha }}
102
102
restore-keys : |
103
- ${{ runner.os }}-pants-${{ steps.pants-cache-commit.outputs.MERGEBASE }}
104
- ${{ runner.os }}-pants-
103
+ ${{ runner.os }}-pants-py${{ matrix.python-version }}- ${{ steps.pants-cache-commit.outputs.MERGEBASE }}
104
+ ${{ runner.os }}-pants-py${{ matrix.python-version }}-
105
105
106
106
- name : Cache Python Dependencies
107
107
uses : actions/cache@v2
You can’t perform that action at this time.
0 commit comments