i.landsat.import: Adding tarfile member sanitization to extractall() (CVE-2007-4559 Patch) #1126
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: General linting | |
on: | |
- push | |
- pull_request | |
jobs: | |
super-linter: | |
name: GitHub Super Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint code base | |
uses: docker://github/super-linter:v2.2.2 | |
env: | |
# Listed but disabled linters would be nice to have. | |
# Python (supported using Pylint) and C/C++ (not supported) are | |
# handled separately due to the complexity of the settings. | |
# (The rest is simply disabled automatically as of v2.) | |
VALIDATE_BASH: false | |
VALIDATE_CSS: false | |
VALIDATE_DOCKER: false | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_JAVASCRIPT_STANDARD: false | |
VALIDATE_JSON: true | |
VALIDATE_MD: true | |
VALIDATE_PERL: false | |
VALIDATE_POWERSHELL: true | |
VALIDATE_XML: false | |
VALIDATE_YAML: true |