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-kotlin' to analyze code written in Java, Kotlin or both
42
+
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
43
+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
44
+
dot-version: ['3.1.x']
45
+
46
+
steps:
47
+
- name: Checkout repository
48
+
uses: actions/checkout@v3
49
+
50
+
# Installing DotNet version
51
+
- uses: actions/checkout@v3
52
+
- name: Setup dotnet ${{ matrix.dotnet-version }}
53
+
uses: actions/setup-dotnet@v3
54
+
with:
55
+
dotnet-version: ${{ matrix.dotnet-version }}
56
+
# You can test your matrix by printing the current dotnet version
57
+
- name: Display dotnet version
58
+
run: dotnet --version
59
+
60
+
# Initializes the CodeQL tools for scanning.
61
+
- name: Initialize CodeQL
62
+
uses: github/codeql-action/init@v2
63
+
with:
64
+
languages: ${{ matrix.language }}
65
+
# If you wish to specify custom queries, you can do so here or in a config file.
66
+
# By default, queries listed here will override any specified in a config file.
67
+
# Prefix the list here with "+" to use these queries and those in the config file.
68
+
69
+
# 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
70
+
# queries: security-extended,security-and-quality
71
+
72
+
73
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
74
+
# If this step fails, then you should remove it and run the build manually (see below)
75
+
- name: Autobuild
76
+
uses: github/codeql-action/autobuild@v2
77
+
78
+
# ?? Command-line programs to run using the OS shell.
79
+
# ?? See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
80
+
81
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
82
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
0 commit comments