Skip to content

Bump github/codeql-action from 1 to 3 #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

Check warning on line 12 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

12:1 [document-start] missing document start "---"

Check warning on line 12 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

12:1 [document-start] missing document start "---"

on:

Check warning on line 14 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

14:1 [truthy] truthy value should be one of [false, true]

Check warning on line 14 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

14:1 [truthy] truthy value should be one of [false, true]
push:
branches: [ main ]

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:21 [brackets] too many spaces inside brackets

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:16 [brackets] too many spaces inside brackets

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:21 [brackets] too many spaces inside brackets

Check failure on line 16 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

16:16 [brackets] too many spaces inside brackets
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:21 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:16 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:21 [brackets] too many spaces inside brackets

Check failure on line 19 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

19:16 [brackets] too many spaces inside brackets
schedule:
- cron: '40 15 * * 1'

Expand All @@ -43,7 +43,7 @@

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -54,7 +54,7 @@
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -63,9 +63,9 @@
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |

Check warning on line 66 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

66:6 [comments] missing starting space in comment

Check warning on line 66 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / Megalint Code Base

66:6 [comments] missing starting space in comment
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3
Loading