build(deps): bump @mui/x-data-grid from 7.21.0 to 7.22.0 #5546
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: Linter | |
on: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
statuses: write | |
jobs: | |
linter: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write # for github/super-linter/slim to mark status of each linter run | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- name: Lint Code Base | |
uses: github/super-linter/slim@45fc0d88288beee4701c62761281edfee85655d7 # v5.0.0 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Markdown lint complains about the issue templates | |
FILTER_REGEX_EXCLUDE: .github/ISSUE_TEMPLATE/* | |
VALIDATE_YAML: false |