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 9
9
outputs :
10
10
cache-dir :
11
11
description : " The directory where the cache was stored"
12
- value : ${{ steps.fill -compilation-dir.outputs.compdir }}
12
+ value : ${{ steps.output -compilation-dir.outputs.compdir }}
13
13
14
14
runs :
15
15
using : composite
42
42
restore-keys : | # restore the latest cache if the exact cache is unavailable, to speed up compilation.
43
43
codeql-compile-${{ inputs.key }}-${{ github.ref_name }}-
44
44
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
45
52
- name : Fill compilation cache directory
53
+ id : fill-compilation-dir
46
54
uses : actions/github-script@v6
47
55
env :
48
56
COMBINED_CACHE_DIR : ${{ runner.temp }}/compilation-dir
You can’t perform that action at this time.
0 commit comments