Skip to content

Bump actions/setup-python from 2.1.4 to 5.3.0 #49

Bump actions/setup-python from 2.1.4 to 5.3.0

Bump actions/setup-python from 2.1.4 to 5.3.0 #49

Workflow file for this run

###########################
## Linter GitHub Actions ##
###########################
#
# Documentation: https://github.com/github/super-linter/
#
# Exception config files are in the .github/linters directory
#
name: Lint Code Base
on:
- workflow_dispatch
- push
- pull_request
jobs:
lint:
name: Lint Code Base
# Skip duplicate job for local branches
# except for linter upgrades (so it can be caught by below check to lint all)
if: |
github.event_name == 'push' ||
github.event.pull_request.head.repo.full_name != github.repository ||
startsWith(github.event.pull_request.title,'Bump github/super-linter')
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/[email protected]
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Set VALIDATE_ALL_CODEBASE variable to false
# Only run the full workflow for manual runs or if upgrading the super linter
if: |
github.event_name != 'workflow_dispatch' &&
startsWith(github.event.pull_request.title,'Bump github/super-linter') != true
run: |
echo "VALIDATE_ALL_CODEBASE=false" >> $GITHUB_ENV
- name: Lint Code Base
uses: docker://github/super-linter:v3.13.1
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_BASH: true
VALIDATE_CSS: true
VALIDATE_HTML: true
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_JSON: true
VALIDATE_MD: true
VALIDATE_PYTHON_PYLINT: true
VALIDATE_PYTHON_FLAKE8: true
VALIDATE_YAML: true