Skip to content

Bump github/codeql-action from 4.35.1 to 4.36.2 #189

Bump github/codeql-action from 4.35.1 to 4.36.2

Bump github/codeql-action from 4.35.1 to 4.36.2 #189

---
# template source: https://github.com/bretfisher/super-linter-workflow/blob/main/templates/call-super-linter.yaml
name: Lint Code Base
on:
# run anytime a PR is merged to main or a direct push to main
push:
branches: [main]
# run on any push to a PR branch
pull_request:
# cancel any previously-started, yet still active runs of this workflow on the same branch
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
call-super-linter:

Check failure on line 20 in .github/workflows/call-super-linter.yaml

View workflow run for this annotation

GitHub Actions / Lint Code Base

Invalid workflow file

The workflow is not valid. .github/workflows/call-super-linter.yaml (Line: 20, Col: 3): Error calling workflow 'bretfisher/super-linter-workflow/.github/workflows/reusable-super-linter.yaml@main'. The nested job 'super-lint' is requesting 'pull-requests: write', but is only allowed 'pull-requests: none'.
name: Call Super-Linter
permissions:
contents: read # clone the repo to lint
statuses: write # read/write to repo custom statuses
### use Reusable Workflows to call my workflow remotely
### https://docs.github.com/en/actions/learn-github-actions/reusing-workflows
### you can also call workflows from inside the same repo via file path
# FIXME: customize uri to point to your own reusable linter repository
uses: bretfisher/super-linter-workflow/.github/workflows/reusable-super-linter.yaml@main # zizmor: ignore[unpinned-uses] Teaching repo: this caller intentionally references a reusable workflow by branch so learners can see and customize the source more easily.
### Optional settings examples
with:
### For a DevOps-focused repository. Prevents some code-language linters from running
### defaults to false
devops-only: false
### A regex to exclude files from linting
### defaults to empty
# filter-regex-exclude: html/.*