@@ -43,13 +43,13 @@ jobs:
43
43
44
44
steps :
45
45
- name : Checkout repository
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v4
47
47
with :
48
48
submodules : recursive
49
49
50
50
# Initializes the CodeQL tools for scanning.
51
51
- name : Initialize CodeQL
52
- uses : github/codeql-action/init@v2
52
+ uses : github/codeql-action/init@v3
53
53
with :
54
54
languages : ${{ matrix.language }}
55
55
# If you wish to specify custom queries, you can do so here or in a config file.
64
64
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
65
65
# If this step fails, then you should remove it and run the build manually (see below)
66
66
# - name: Autobuild
67
- # uses: github/codeql-action/autobuild@v2
67
+ # uses: github/codeql-action/autobuild@v3
68
68
69
69
# ℹ️ Command-line programs to run using the OS shell.
70
70
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
76
76
./.github/workflows/codeql-buildscript.sh
77
77
78
78
- name : Perform CodeQL Analysis
79
- uses : github/codeql-action/analyze@v2
79
+ uses : github/codeql-action/analyze@v3
80
80
with :
81
81
category : " /language:${{matrix.language}}"
82
82
upload : false
@@ -105,14 +105,14 @@ jobs:
105
105
output : ${{ steps.step1.outputs.sarif-output }}/cpp.sarif
106
106
107
107
- name : Upload CodeQL results to code scanning
108
- uses : github/codeql-action/upload-sarif@v2
108
+ uses : github/codeql-action/upload-sarif@v3
109
109
with :
110
110
sarif_file : ${{ steps.step1.outputs.sarif-output }}
111
111
category : " /language:${{matrix.language}}"
112
112
113
113
- name : Upload CodeQL results as an artifact
114
114
if : success() || failure()
115
- uses : actions/upload-artifact@v3
115
+ uses : actions/upload-artifact@v4
116
116
with :
117
117
name : codeql-results
118
118
path : ${{ steps.step1.outputs.sarif-output }}
0 commit comments