Skip to content

Commit a2fb53b

Browse files
authored
fix: usage of deprecated CodeQL Action version (#532)
1 parent f8c9c20 commit a2fb53b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches:
88
- master
99
schedule:
10-
- cron: '24 21 * * 0'
10+
- cron: "24 21 * * 0"
1111
jobs:
1212
analyze:
1313
name: analyze
@@ -19,15 +19,15 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
language: ['go']
22+
language: ["go"]
2323
steps:
2424
- name: Check out the code
2525
uses: actions/checkout@v4
2626
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@v2
27+
uses: github/codeql-action/init@v3
2828
with:
2929
languages: ${{ matrix.language }}
3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@v2
31+
uses: github/codeql-action/autobuild@v3
3232
- name: Perform CodeQL Analysis
33-
uses: github/codeql-action/analyze@v2
33+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)