Skip to content

Commit 5d1b34f

Browse files
committed
Bump versions in codeql action
1 parent c24678a commit 5d1b34f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/codeql.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
with:
4848
submodules: recursive
4949

5050
# Initializes the CodeQL tools for scanning.
5151
- name: Initialize CodeQL
52-
uses: github/codeql-action/init@v2
52+
uses: github/codeql-action/init@v3
5353
with:
5454
languages: ${{ matrix.language }}
5555
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,7 +64,7 @@ jobs:
6464
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6565
# If this step fails, then you should remove it and run the build manually (see below)
6666
#- name: Autobuild
67-
# uses: github/codeql-action/autobuild@v2
67+
# uses: github/codeql-action/autobuild@v3
6868

6969
# ℹ️ Command-line programs to run using the OS shell.
7070
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -76,7 +76,7 @@ jobs:
7676
./.github/workflows/codeql-buildscript.sh
7777
7878
- name: Perform CodeQL Analysis
79-
uses: github/codeql-action/analyze@v2
79+
uses: github/codeql-action/analyze@v3
8080
with:
8181
category: "/language:${{matrix.language}}"
8282
upload: false
@@ -105,14 +105,14 @@ jobs:
105105
output: ${{ steps.step1.outputs.sarif-output }}/cpp.sarif
106106

107107
- name: Upload CodeQL results to code scanning
108-
uses: github/codeql-action/upload-sarif@v2
108+
uses: github/codeql-action/upload-sarif@v3
109109
with:
110110
sarif_file: ${{ steps.step1.outputs.sarif-output }}
111111
category: "/language:${{matrix.language}}"
112112

113113
- name: Upload CodeQL results as an artifact
114114
if: success() || failure()
115-
uses: actions/upload-artifact@v3
115+
uses: actions/upload-artifact@v4
116116
with:
117117
name: codeql-results
118118
path: ${{ steps.step1.outputs.sarif-output }}

0 commit comments

Comments
 (0)