|
|
@@ -21,7 +21,7 @@ permissions:
|
|
21
|
21
|
|
|
22
|
22
|
on:
|
|
23
|
23
|
push:
|
|
24
|
|
- branches:
|
|
|
24
|
+ branches:
|
|
25
|
25
|
- master
|
|
26
|
26
|
- stable
|
|
27
|
27
|
pull_request:
|
|
|
@@ -45,11 +45,13 @@ jobs:
|
|
45
|
45
|
|
|
46
|
46
|
steps:
|
|
47
|
47
|
- name: Checkout repository
|
|
48
|
|
- uses: actions/checkout@v2
|
|
|
48
|
+ uses: actions/checkout@v6
|
|
|
49
|
+ with:
|
|
|
50
|
+ submodules: recursive
|
|
49
|
51
|
|
|
50
|
52
|
# Initializes the CodeQL tools for scanning.
|
|
51
|
53
|
- name: Initialize CodeQL
|
|
52
|
|
- uses: github/codeql-action/init@v1
|
|
|
54
|
+ uses: github/codeql-action/init@v4
|
|
53
|
55
|
with:
|
|
54
|
56
|
languages: ${{ matrix.language }}
|
|
55
|
57
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
|
@@ -60,7 +62,7 @@ jobs:
|
|
60
|
62
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
61
|
63
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
62
|
64
|
- name: Autobuild
|
|
63
|
|
- uses: github/codeql-action/autobuild@v1
|
|
|
65
|
+ uses: github/codeql-action/autobuild@v4
|
|
64
|
66
|
|
|
65
|
67
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
66
|
68
|
# 📚 https://git.io/JvXDl
|
|
|
@@ -74,4 +76,4 @@ jobs:
|
|
74
|
76
|
# make release
|
|
75
|
77
|
|
|
76
|
78
|
- name: Perform CodeQL Analysis
|
|
77
|
|
- uses: github/codeql-action/analyze@v1
|
|
|
79
|
+ uses: github/codeql-action/analyze@v4
|