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.
2 parents b373204 + cc6dca3 commit daeca89Copy full SHA for daeca89
1 file changed
.github/workflows/codeql-analysis.yml
@@ -24,16 +24,24 @@ jobs:
24
with:
25
fetch-depth: 0
26
27
- - run: git checkout HEAD^2
28
- if: ${{ github.event_name == 'pull_request' }}
+ - name: Cache Tools
+ uses: actions/cache@v2
29
+ with:
30
+ path: tools
31
+ key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
32
33
- name: Initialize CodeQL
34
uses: github/codeql-action/init@v1
35
36
languages: ${{ matrix.language }}
37
- - run: ./build.ps1 --target=DotNetCore-Build
- shell: pwsh
38
+ - name: Build project
39
+ uses: cake-build/cake-action@v1
40
41
+ script-path: recipe.cake
42
+ target: DotNetCore-Build
43
+ cake-version: 0.38.5
44
+ cake-bootstrap: true
45
46
- name: Perform CodeQL Analysis
47
uses: github/codeql-action/analyze@v1
0 commit comments