diff options
author | Steve Bennett <steveb@workware.net.au> | 2025-07-07 19:58:30 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2025-07-16 09:34:08 +1000 |
commit | 9dd24827d35d04297480595f429c5fb47292f89c (patch) | |
tree | 1cc06f14c521887c59f1a1b2d370cf2edaeaf30d | |
parent | 6eded62de5941902deb5e276e88a579677abf929 (diff) | |
download | jimtcl-9dd24827d35d04297480595f429c5fb47292f89c.zip jimtcl-9dd24827d35d04297480595f429c5fb47292f89c.tar.gz jimtcl-9dd24827d35d04297480595f429c5fb47292f89c.tar.bz2 |
update codeql actions to use v3
Just blindly changing v2 to v3. No idea if this is correct.
Signed-off-by: Steve Bennett <steveb@workware.net.au>
-rw-r--r-- | .github/workflows/codeql.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f55e344..67cda70 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -51,7 +51,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -66,7 +66,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). # If this step fails, then you should remove it and run the build manually (see below) #- name: Autobuild - # uses: github/codeql-action/autobuild@v2 + # uses: github/codeql-action/autobuild@v3 # âšī¸ Command-line programs to run using the OS shell. # đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -78,7 +78,7 @@ jobs: ./.github/workflows/codeql-buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" upload: false @@ -107,7 +107,7 @@ jobs: output: ${{ steps.step1.outputs.sarif-output }}/cpp.sarif - name: Upload CodeQL results to code scanning - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: sarif_file: ${{ steps.step1.outputs.sarif-output }} category: "/language:${{matrix.language}}" |