We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 555e08a commit 08b7eb7Copy full SHA for 08b7eb7
.github/actions/install-codeql/action.yml
@@ -9,9 +9,17 @@ inputs:
9
runs:
10
using: composite
11
steps:
12
- # TODO: Consider to introduce caching for the CodeQL CLI.
+ - name: Cache CodeQL
13
+ id: cache-codeql
14
+ uses: actions/cache@v4
15
+ with:
16
+ # A list of files, directories, and wildcard patterns to cache and restore
17
+ path: ${{github.workspace}}/codeql_home
18
+ # An explicit key for restoring and saving the cache
19
+ key: codeql-home-${{ inputs.codeql-cli-version }}
20
+
21
- name: Install CodeQL
- # if: steps.cache-codeql.outputs.cache-hit != 'true'
22
+ if: steps.cache-codeql.outputs.cache-hit != 'true'
23
shell: bash
24
env:
25
GITHUB_TOKEN: ${{ github.token }}
0 commit comments