Skip to content

Commit

Permalink
Update codeql.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Nov 18, 2024
1 parent d20b9a6 commit 5fd6462
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
fail-fast: false
matrix:
include:
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'

Check warning on line 57 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / YAML Lint / build (3.x)

57:9 [comments-indentation] comment not indented like content

Check warning on line 57 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / YAML Lint / build (3.x)

57:81 [line-length] line too long (162 > 80 characters)
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
Expand All @@ -63,15 +63,15 @@ jobs:
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how

Check warning on line 63 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / YAML Lint / build (3.x)

63:81 [line-length] line too long (118 > 80 characters)
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages

Check warning on line 64 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / YAML Lint / build (3.x)

64:81 [line-length] line too long (184 > 80 characters)
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.

Check warning on line 69 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / YAML Lint / build (3.x)

69:5 [comments-indentation] comment not indented like content
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.

Check warning on line 75 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / YAML Lint / build (3.x)

75:9 [comments-indentation] comment not indented like content
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
Expand All @@ -85,17 +85,17 @@ jobs:
# to build your code.
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1
- if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

0 comments on commit 5fd6462

Please sign in to comment.