Skip to content

Commit

Permalink
Merge pull request #1431 from bettio/update-codeql-action
Browse files Browse the repository at this point in the history
Update CodeQL action

See also:
- https://github.blog/changelog/2024-01-12-code-scanning-deprecation-of-codeql-action-v2/
- actions/runner-images#10636

These changes are made under both the "Apache 2.0" and the "GNU Lesser General
Public License 2.1 or later" license terms (dual license).

SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
  • Loading branch information
bettio committed Dec 28, 2024
2 parents dbd6e18 + 96d9cf5 commit ece2412
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ concurrency:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand All @@ -61,7 +61,7 @@ jobs:
uses: actions/checkout@v4

- name: "Initialize CodeQL"
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +./code-queries/term-to-non-term-func.ql,./code-queries/non-term-to-term-func.ql
Expand All @@ -74,4 +74,4 @@ jobs:
ninja
- name: "Perform CodeQL Analysis"
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit ece2412

Please sign in to comment.