1 Commits

Author SHA1 Message Date
26212707ef Update codacy/codacy-analysis-cli-action action to v4
Some checks failed
Codacy Security Scan / Codacy Security Scan (pull_request) Failing after 1m34s
Node.js CI / deploy (pull_request) Has been skipped
Node.js CI / deploy (pull_request_target) Has been skipped
CodeQL / Analyze (javascript) (pull_request) Failing after 1m4s
Node.js CI / test (15.x) (pull_request) Failing after 1m49s
Node.js CI / test (15.x) (pull_request_target) Has been skipped
2025-07-19 12:03:29 +00:00
3 changed files with 5 additions and 5 deletions

View File

@ -24,11 +24,11 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v2
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@1.1.0
uses: codacy/codacy-analysis-cli-action@v4.4.7
with:
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
# You can also omit the token and run the tools that support default configurations

View File

@ -35,7 +35,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL

View File

@ -32,10 +32,10 @@ jobs:
steps:
- name: Checkout
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v4
uses: actions/checkout@v2
- name: Checkout PR
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v4
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}