There was an error while loading. Please reload this page.
1 parent ba82ebb commit a0addc6Copy full SHA for a0addc6
1 file changed
.github/workflows/codeql_unit_tests.yml
@@ -75,7 +75,8 @@ jobs:
75
add-to-path: false
76
77
- name: Cache queries compilation
78
- uses: actions/cache@v6
+ id: cache-queries-compilation
79
+ uses: actions/cache/restore@v6
80
with:
81
path: ${{ github.workspace }}/codeql_cache
82
key: ${{ runner.os }}-codeql-compilation-${{ matrix.language }}-${{ matrix.codeql_cli }}-${{ matrix.codeql_standard_library_ident }}-${{ github.run_id }}
@@ -96,6 +97,12 @@ jobs:
96
97
--threads 0 \
98
${{ matrix.language }}
99
100
+ - name: Save queries compilation cache
101
+ uses: actions/cache/save@v6
102
+ with:
103
+ path: ${{ github.workspace }}/codeql_cache
104
+ key: ${{ steps.cache-queries-compilation.outputs.cache-primary-key }}
105
+
106
- name: Run test suites
107
id: run-test-suites
108
env:
0 commit comments