Skip to content

Commit

Permalink
2.11.5c: add scan-with-codeql action
Browse files Browse the repository at this point in the history
  • Loading branch information
webpwnized committed Oct 20, 2023
1 parent 85d5391 commit f181767
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/scan-with-codeql.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Name of the GitHub Actions workflow
name: CodeQL Analysis for PHP
name: CodeQL Analysis for JavaScript

# Define when the workflow should be triggered
on:
Expand All @@ -10,7 +10,7 @@ on:
# Define the jobs to be executed within the workflow
jobs:
build:
name: Scan PHP code with CodeQL
name: Scan JavaScript code with CodeQL
runs-on: ubuntu-latest # Use the latest version of Ubuntu
steps:
- name: Checkout code
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: php
languages: javascript
# Action to initialize the CodeQL environment

- name: Perform CodeQL Analysis
Expand All @@ -30,5 +30,5 @@ jobs:
# Specify a category to distinguish between multiple analyses
# for the same tool and ref. If you don't use `category` in your workflow,
# GitHub will generate a default category name for you
category: "Scan-PHP-code-with-CodeQL"
category: "Scan-JavaScript-code-with-CodeQL"

0 comments on commit f181767

Please sign in to comment.