Skip to content

Commit b98acf0

Browse files
committed
ci: Fix deprecated CodeQL warnings
Github complains: CodeQL Action major versions v1 and v2 have been deprecated. Please update all occurrences of the CodeQL Action in your workflow files to v3. Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
1 parent ce16dd0 commit b98acf0

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2023 Linaro Ltd.
55
# Author: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
66
# <krzk@kernel.org>
7+
# Copyright (c) 2026 Krzysztof Kozlowski <krzk@kernel.org>
78
#
89
name: "CodeQL"
910
on: [push, pull_request, workflow_dispatch]
@@ -24,10 +25,10 @@ jobs:
2425

2526
steps:
2627
- name: Checkout repository
27-
uses: actions/checkout@v3
28+
uses: actions/checkout@v6
2829

2930
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
31+
uses: github/codeql-action/init@v4
3132
with:
3233
languages: ${{ matrix.language }}
3334

@@ -43,4 +44,4 @@ jobs:
4344
make check
4445
4546
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@v2
47+
uses: github/codeql-action/analyze@v4

0 commit comments

Comments
 (0)