build(deps): bump OpenVisualCloud/Media-Transport-Library from 823685a40d2d7e86524d85e620add44eff62ffc9 to 214477b3d6f02593924236fab9c0a764ac64a292 #1923
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Code Base | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | |
with: | |
egress-policy: audit | |
- name: Checkout Code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
# Full git history is needed to get a proper | |
# list of changed files within `super-linter` | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: github/super-linter/slim@45fc0d88288beee4701c62761281edfee85655d7 # v5.0.0 | |
env: | |
DEFAULT_BRANCH: main | |
VALIDATE_CPP: false | |
VALIDATE_JSCPD: false | |
VALIDATE_DOCKERFILE_HADOLINT: false | |
VALIDATE_JSON: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LOG_LEVEL: WARN |