Skip to content
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

Bump github/codeql-action from 2 to 3 #290

Merged
merged 1 commit into from
Dec 14, 2023
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
# 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.yml

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

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

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

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

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

on:

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

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

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

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

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

14:1 [truthy] truthy value should be one of [false, true]
push:
branches: ["develop", "main"]
pull_request:
Expand Down Expand Up @@ -44,33 +44,33 @@

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
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.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs

Check warning on line 54 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

54:101 [line-length] line too long (225 > 100 characters)

Check warning on line 54 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

54:101 [line-length] line too long (225 > 100 characters)
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, 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@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

Check warning on line 64 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

64:101 [line-length] line too long (118 > 100 characters)

Check warning on line 64 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

64:101 [line-length] line too long (118 > 100 characters)

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

Check warning on line 67 in .github/workflows/codeql.yml

View workflow job for this annotation

GitHub Actions / static-tests (3.12)

67:101 [line-length] line too long (119 > 100 characters)

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
Loading