Skip to content

Commit 24eabb9

Browse files
authored
fix: usage of deprecated CodeQL Action version (#873)
* chore: changes from formatting on save * fix: usage of deprecated `CodeQL Action` version
1 parent a7c00b8 commit 24eabb9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/codeql.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
- master
99
schedule:
10-
- cron: '33 12 * * 3'
10+
- cron: "33 12 * * 3"
1111
jobs:
1212
analyze:
1313
name: analyze
@@ -19,15 +19,15 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
language: [ 'python' ]
22+
language: ["python"]
2323
steps:
24-
- name: Checkout repository
25-
uses: actions/checkout@v3
26-
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@v2
28-
with:
29-
languages: ${{ matrix.language }}
30-
- name: Autobuild
31-
uses: github/codeql-action/autobuild@v2
32-
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@v2
24+
- name: Checkout repository
25+
uses: actions/checkout@v3
26+
- name: Initialize CodeQL
27+
uses: github/codeql-action/init@v3
28+
with:
29+
languages: ${{ matrix.language }}
30+
- name: Autobuild
31+
uses: github/codeql-action/autobuild@v3
32+
- name: Perform CodeQL Analysis
33+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)