1
1
name : " Code Scanning - Action"
2
2
3
3
on :
4
- push :
5
- branches : [master]
6
4
pull_request :
7
- branches : [master]
5
+ push :
6
+ branches : [ master ]
8
7
schedule :
9
- # ┌───────────── minute (0 - 59)
10
- # │ ┌───────────── hour (0 - 23)
11
- # │ │ ┌───────────── day of the month (1 - 31)
12
- # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
13
- # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
14
- # │ │ │ │ │
15
- # │ │ │ │ │
16
- # │ │ │ │ │
17
- # * * * * *
18
8
- cron : ' 30 1 * * 0'
19
9
20
10
jobs :
@@ -32,19 +22,19 @@ jobs:
32
22
33
23
steps :
34
24
- name : Checkout repository
35
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
36
26
37
27
# Initializes the CodeQL tools for scanning.
38
28
- name : Initialize CodeQL
39
- uses : github/codeql-action/init@v2
29
+ uses : github/codeql-action/init@v3
40
30
# Override language selection by uncommenting this and choosing your languages
41
31
# with:
42
32
# languages: go, javascript, csharp, python, cpp, java, ruby
43
33
44
34
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
45
35
# If this step fails, then you should remove it and run the build manually (see below).
46
36
- name : Autobuild
47
- uses : github/codeql-action/autobuild@v2
37
+ uses : github/codeql-action/autobuild@v3
48
38
49
39
# ℹ️ Command-line programs to run using the OS shell.
50
40
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
58
48
# make release
59
49
60
50
- name : Perform CodeQL Analysis
61
- uses : github/codeql-action/analyze@v2
51
+ uses : github/codeql-action/analyze@v3
0 commit comments