You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Use only 'java' to analyze code written in Java, Kotlin or both
42
42
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
43
43
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
44
44
45
45
steps:
46
-
- name: Checkout repository
47
-
uses: actions/checkout@v3
46
+
- name: Checkout repository
47
+
uses: actions/checkout@v4
48
48
49
-
# Initializes the CodeQL tools for scanning.
50
-
- name: Initialize CodeQL
51
-
uses: github/codeql-action/init@v2
52
-
with:
53
-
languages: ${{ matrix.language }}
54
-
# If you wish to specify custom queries, you can do so here or in a config file.
55
-
# By default, queries listed here will override any specified in a config file.
56
-
# Prefix the list here with "+" to use these queries and those in the config file.
49
+
# Initializes the CodeQL tools for scanning.
50
+
- name: Initialize CodeQL
51
+
uses: github/codeql-action/init@v2
52
+
with:
53
+
languages: ${{ matrix.language }}
54
+
# If you wish to specify custom queries, you can do so here or in a config file.
55
+
# By default, queries listed here will override any specified in a config file.
56
+
# Prefix the list here with "+" to use these queries and those in the config file.
57
57
58
-
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
59
-
queries: security-extended
60
-
config: |
61
-
paths-ignore:
62
-
- '**/*.test.js'
63
-
- '**/*.spec.js'
64
-
- '**/*.test.ts'
65
-
- '**/*.spec.ts'
66
-
- '**/*.test.tsx'
67
-
- '**/*.spec.tsx'
68
-
- 'scripts/**'
58
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
59
+
queries: security-extended
60
+
config: |
61
+
paths-ignore:
62
+
- '**/*.test.js'
63
+
- '**/*.spec.js'
64
+
- '**/*.test.ts'
65
+
- '**/*.spec.ts'
66
+
- '**/*.test.tsx'
67
+
- '**/*.spec.tsx'
68
+
- 'scripts/**'
69
69
70
-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
71
-
# If this step fails, then you should remove it and run the build manually (see below)
72
-
- name: Autobuild
73
-
uses: github/codeql-action/autobuild@v2
70
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
71
+
# If this step fails, then you should remove it and run the build manually (see below)
72
+
- name: Autobuild
73
+
uses: github/codeql-action/autobuild@v2
74
74
75
-
# ℹ️ Command-line programs to run using the OS shell.
76
-
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
75
+
# ℹ️ Command-line programs to run using the OS shell.
76
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
77
77
78
-
# If the Autobuild fails above, remove it and uncomment the following three lines.
79
-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
78
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
79
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
Copy file name to clipboardExpand all lines: .github/workflows/publish-compass.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ on:
5
5
workflow_dispatch:
6
6
inputs:
7
7
dryRun:
8
-
description: 'Run publish in dry-run mode (WARN: think twice when changing this value, this will override currently published manifest in download center!)'
8
+
description: "Run publish in dry-run mode (WARN: think twice when changing this value, this will override currently published manifest in download center!)"
Copy file name to clipboardExpand all lines: .github/workflows/start-beta.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,32 +5,32 @@ on:
5
5
inputs:
6
6
mergeBranch:
7
7
description: 'mergeBranch (optional, default="main"): the branch to merge from, useful to perform quick fixes outside of main.'
8
-
default: 'main'
8
+
default: "main"
9
9
required: false
10
10
overrideNextGa:
11
-
description: 'overrideNextGa (optional): set this param if you want to override the nextGa version that is fetched from jira versions, and use a different one.'
11
+
description: "overrideNextGa (optional): set this param if you want to override the nextGa version that is fetched from jira versions, and use a different one."
0 commit comments