Skip to content

Commit bf86532

Browse files
Merge pull request #11 from aparnajyothi-y/fix-codeql-failure
Fix for CodeQL analysis workflow failures
2 parents 5e63e7a + 8b0de5e commit bf86532

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
description: "Optional input to set languages for CodeQL check. Supported values are: 'cpp', 'csharp', 'go', 'java', 'javascript', 'typescript', 'python', 'ruby'. To set multiple languages, use the same syntax as you can see in the default value."
1212
required: false
1313
type: string
14-
default: "['javascript']"
14+
default: '["javascript"]'
1515
codeql-cfg-path:
1616
description: "Optional input to set path to a CodeQL config file"
1717
required: false
@@ -41,7 +41,7 @@ jobs:
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v2
44+
uses: github/codeql-action/init@v3
4545
with:
4646
languages: ${{matrix.language}}
4747
config-file: ${{inputs.codeql-cfg-path}}
@@ -50,12 +50,12 @@ jobs:
5050
# If this step fails, configure a build command manually using build-command input. This command will be executed in the corresponding step.
5151
- name: Autobuild
5252
if: ${{!inputs.build-command}}
53-
uses: github/codeql-action/autobuild@v2
53+
uses: github/codeql-action/autobuild@v3
5454

5555
- name: Manual build
5656
if: ${{inputs.build-command}}
5757
run: |
5858
${{inputs.build-command}}
5959
6060
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@v2
61+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)