Skip to content

Commit 34bc8d0

Browse files
committed
removing not needed steps
1 parent 2ad14a5 commit 34bc8d0

File tree

1 file changed

+6
-26
lines changed

1 file changed

+6
-26
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,9 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
include:
34-
- language: actions
35-
build-mode: none
3634
- language: java
3735
build-mode: manual # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too.
38-
- language: javascript-typescript
39-
build-mode: autobuild
40-
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
41-
# Use `c-cpp` to analyze code written in C, C++ or both
42-
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
43-
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
44-
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
45-
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
46-
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
47-
# 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
36+
4837
steps:
4938
- name: Checkout repository
5039
uses: actions/checkout@v4
@@ -64,10 +53,10 @@ jobs:
6453
- name: Mustache Specs
6554
run: |
6655
git submodule update --init --recursive
67-
- name: Set up JDK ${{ matrix.java_version }}
56+
- name: Set up JDK 11
6857
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
6958
with:
70-
java-version: ${{ matrix.java_version }}
59+
java-version: 11
7160
distribution: "temurin"
7261
cache: maven
7362
- name: Install
@@ -134,18 +123,9 @@ jobs:
134123
fail-fast: false
135124
matrix:
136125
include:
137-
- language: actions
138-
build-mode: none
139126
- language: javascript-typescript
140127
build-mode: manual
141-
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'
142-
# Use `c-cpp` to analyze code written in C, C++ or both
143-
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
144-
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
145-
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
146-
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
147-
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
148-
# 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
128+
149129
steps:
150130
- name: Checkout repository
151131
uses: actions/checkout@v4
@@ -165,10 +145,10 @@ jobs:
165145
- name: Mustache Specs
166146
run: |
167147
git submodule update --init --recursive
168-
- name: Set up JDK ${{ matrix.javascript_version }}
148+
- name: Set up JDK 11
169149
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
170150
with:
171-
java-version: ${{ matrix.javascript_version }}
151+
java-version: 11
172152
distribution: "temurin"
173153
cache: maven
174154
- name: Install

0 commit comments

Comments
 (0)