Skip to content

Commit 1d46c4e

Browse files
committed
update cache key
1 parent db6dbff commit 1d46c4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci_consumption_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
id: cache-pip
4040
with:
4141
path: ${{ env.pythonLocation }}
42-
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ env.todayDate }}
42+
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ env.todayDate }}-${{ matrix.python-version }}
4343
- name: Install dependencies
4444
if: steps.cache-pip.outputs.cache-hit != 'true'
4545
run: |

.github/workflows/ci_e2e_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: cache-pip
4949
with:
5050
path: ${{ env.pythonLocation }}
51-
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ env.todayDate }}
51+
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ env.todayDate }}-${{ matrix.python-version }}
5252
- name: Install dependencies
5353
if: steps.cache-pip.outputs.cache-hit != 'true'
5454
run: |

.github/workflows/ci_ut_workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id: cache-pip
4747
with:
4848
path: ${{ env.pythonLocation }}
49-
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ env.todayDate }}
49+
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ env.todayDate }}-${{ matrix.python-version }}
5050
- name: Install dependencies
5151
if: steps.cache-pip.outputs.cache-hit != 'true'
5252
run: |

0 commit comments

Comments
 (0)