chore: refresh imported plugin sources from upstream 0.17.0-131 (#45) #124
Workflow file for this run
This file contains hidden or 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: super-linter | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: {} | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout with history | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run super-linter | |
| uses: super-linter/super-linter/slim@v8.7.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # super-linter configurations | |
| MULTI_STATUS: false | |
| SUPPRESS_POSSUM: true | |
| VALIDATE_ALL_CODEBASE: false | |
| # language configurations | |
| # clang-format is handled by .github/workflows/clang-format.yml, which | |
| # mirrors upstream WasmEdge's pinned-version clang-format method. | |
| VALIDATE_MARKDOWN: true | |
| VALIDATE_YAML: true | |
| # misc configurations | |
| ENFORCE_COMMITLINT_CONFIGURATION_CHECK: true | |
| VALIDATE_GIT_COMMITLINT: true | |
| VALIDATE_GITHUB_ACTIONS: true | |
| VALIDATE_GITLEAKS: true |