File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ jobs:
262
262
uses : actions/cache@v4
263
263
with :
264
264
path : config.cache
265
- key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
265
+ key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}-${{ env.ImageVersion }}
266
266
- name : Register gcc problem matcher
267
267
run : echo "::add-matcher::.github/problem-matchers/gcc.json"
268
268
- name : Install Dependencies
@@ -345,7 +345,7 @@ jobs:
345
345
uses : actions/cache@v4
346
346
with :
347
347
path : ${{ env.CPYTHON_BUILDDIR }}/config.cache
348
- key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
348
+ key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}-${{ env.ImageVersion }}
349
349
- name : Configure CPython out-of-tree
350
350
working-directory : ${{ env.CPYTHON_BUILDDIR }}
351
351
run : |
@@ -424,7 +424,7 @@ jobs:
424
424
uses : actions/cache@v4
425
425
with :
426
426
path : config.cache
427
- key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
427
+ key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}-${{ env.ImageVersion }}
428
428
- name : Register gcc problem matcher
429
429
run : echo "::add-matcher::.github/problem-matchers/gcc.json"
430
430
- name : Install Dependencies
Original file line number Diff line number Diff line change 32
32
uses : actions/cache@v4
33
33
with :
34
34
path : config.cache
35
- key : ${{ github.job }}-${{ matrix.os }}-${{ inputs.config_hash }}
35
+ key : ${{ github.job }}-${{ matrix.os }}-${{ inputs.config_hash }}-${{ env.ImageVersion }}
36
36
- name : Install Homebrew dependencies
37
37
run :
brew install pkg-config [email protected] xz gdbm tcl-tk
38
38
- name : Configure CPython
Original file line number Diff line number Diff line change 56
56
uses : actions/cache@v4
57
57
with :
58
58
path : ${{ env.CPYTHON_BUILDDIR }}/config.cache
59
- key : ${{ github.job }}-${{ runner.os }}-${{ inputs.config_hash }}
59
+ key : ${{ github.job }}-${{ runner.os }}-${{ inputs.config_hash }}-${{ env.ImageVersion }}
60
60
- name : Configure CPython out-of-tree
61
61
working-directory : ${{ env.CPYTHON_BUILDDIR }}
62
62
run : ${{ inputs.options }}
You can’t perform that action at this time.
0 commit comments