Skip to content

Commit 493f267

Browse files
committed
Fix CodeQL GitHub Action
1 parent 813314d commit 493f267

1 file changed

Lines changed: 9 additions & 13 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ permissions:
1717

1818
jobs:
1919
analyze:
20-
- if: github.actor == 'dependabot[bot]'
21-
name: Cancel in case of dependencies update
22-
uses: andymckay/cancel-action@0.2
23-
2420
name: Analyze
2521
runs-on: ubuntu-latest
2622
if: |
@@ -29,15 +25,15 @@ jobs:
2925
(github.event_name == 'pull_request' && github.actor != 'dependabot[bot]')
3026
3127
steps:
32-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v2
3329

34-
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@v1
36-
with:
37-
languages: javascript
30+
- name: Initialize CodeQL
31+
uses: github/codeql-action/init@v1
32+
with:
33+
languages: javascript
3834

39-
- name: Autobuild
40-
uses: github/codeql-action/autobuild@v1
35+
- name: Autobuild
36+
uses: github/codeql-action/autobuild@v1
4137

42-
- name: Perform CodeQL Analysis
43-
uses: github/codeql-action/analyze@v1
38+
- name: Perform CodeQL Analysis
39+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)