File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
.github/actions/cache-query-compilation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ runs:
23
23
BASE_BRANCH : ${{ github.base_ref }}
24
24
run : |
25
25
MERGE_BASE=$(git cat-file commit $GITHUB_SHA | grep '^parent ' | head -1 | cut -f 2 -d " ")
26
- echo "merge-base =$MERGE_BASE" >> $GITHUB_ENV
26
+ echo "merge_base =$MERGE_BASE" >> $GITHUB_ENV
27
27
- name : Read CodeQL query compilation - PR
28
28
if : ${{ github.event_name == 'pull_request' }}
29
29
uses : actions/cache@v3
30
30
with :
31
31
path : ' **/.cache'
32
32
key : codeql-compile-${{ inputs.key }}-pr-${{ github.sha }} # deliberately not using the `compile-compile-main` keys here.
33
33
restore-keys : |
34
- codeql-compile-${{ inputs.key }}-${{ github.base_ref }}-${{ env.merge-base }}
34
+ codeql-compile-${{ inputs.key }}-${{ github.base_ref }}-${{ env.merge_base }}
35
35
codeql-compile-${{ inputs.key }}-${{ github.base_ref }}-
36
36
codeql-compile-${{ inputs.key }}-main-
37
37
- name : Fill CodeQL query compilation cache - main
You can’t perform that action at this time.
0 commit comments