Skip to content

Commit 84e86c5

Browse files
authored
Upgrade CodeQL workflow to use Ubuntu 24.04 and actions v4
Updated CodeQL workflow to use newer versions of Ubuntu and actions.
1 parent 8739b4e commit 84e86c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
analyze:
77
name: Analyze
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99

1010
strategy:
1111
fail-fast: false
@@ -17,7 +17,7 @@ jobs:
1717
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
submodules: recursive
2323

@@ -26,7 +26,7 @@ jobs:
2626

2727
# Initializes the CodeQL tools for scanning.
2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@v2
29+
uses: github/codeql-action/init@v3
3030
with:
3131
languages: ${{ matrix.language }}
3232
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -39,4 +39,4 @@ jobs:
3939
make -j$(nproc) USE_Z3=yes HAVE_RULES=yes
4040
4141
- name: Perform CodeQL Analysis
42-
uses: github/codeql-action/analyze@v2
42+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)