File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
.github/actions/cache-query-compilation Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 99outputs :
1010 cache-dir :
1111 description : " The directory where the cache was stored"
12- value : ${{ steps.fill -compilation-dir.outputs.compdir }}
12+ value : ${{ steps.output -compilation-dir.outputs.compdir }}
1313
1414runs :
1515 using : composite
4242 restore-keys : | # restore the latest cache if the exact cache is unavailable, to speed up compilation.
4343 codeql-compile-${{ inputs.key }}-${{ github.ref_name }}-
4444 codeql-compile-${{ inputs.key }}-main-
45+ - name : Output-compilationdir
46+ id : output-compilation-dir
47+ shell : bash
48+ run : |
49+ echo "compdir=${COMBINED_CACHE_DIR}" >> $GITHUB_OUTPUT
50+ env :
51+ COMBINED_CACHE_DIR : ${{ runner.temp }}/compilation-dir
4552 - name : Fill compilation cache directory
53+ id : fill-compilation-dir
4654 uses : actions/github-script@v6
4755 env :
4856 COMBINED_CACHE_DIR : ${{ runner.temp }}/compilation-dir
You can’t perform that action at this time.
0 commit comments