Skip to content

chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 #1375

chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7

chore(deps): bump github/codeql-action from 3.25.6 to 3.25.7 #1375

Workflow file for this run

---
name: Lint Code Base
on:
pull_request:
pull_request_target:
jobs:
build:
name: Lint Code Base
# If the PR is coming from a fork (pull_request_target), ensure it's opened by "dependabot[bot]"
# or "github-actions[bot]".
# Otherwise, clone it normally.
if: |
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') ||
(github.event_name == 'pull_request_target' && github.actor == 'github-actions[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'github-actions[bot]')
runs-on: ubuntu-22.04
steps:
- name: Checkout
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Checkout
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/[email protected]
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Lint Code Base
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_KOTLIN: false
VALIDATE_KOTLIN_ANDROID: false
VALIDATE_SHELL_SHFMT: false
VALIDATE_BASH: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_CHECKOV: false
VALIDATE_JSCPD: false