Skip to content

Release#75

Merged
jtrobles-cdd merged 4 commits intomasterfrom
develop
Apr 25, 2025
Merged

Release#75
jtrobles-cdd merged 4 commits intomasterfrom
develop

Conversation

@jtrobles-cdd
Copy link
Copy Markdown
Member

Changes

jtrobles-cdd and others added 4 commits April 25, 2025 15:41
This change makes it possible to customize the filenames of the
configuration for EditorConfig Checker, Flake8, Isort, and Mypy.
Add inputs for all Super-Linter validator configuration files
Enable Super-Linter for pull requests in this VCS repository
@jtrobles-cdd jtrobles-cdd added task Task or chore kind: release Release labels Apr 25, 2025
@jtrobles-cdd jtrobles-cdd self-assigned this Apr 25, 2025

if [ "$validate_editorconfig" == 'true' ]; then
echo "EDITORCONFIG_FILE_NAME=.ecrc" >> "$GITHUB_ENV"
echo "EDITORCONFIG_FILE_NAME=${{ inputs.editorconfig_file_name }}" >> "$GITHUB_ENV"

Check warning

Code scanning / CodeQL

Code injection Medium

Potential code injection in
${ inputs.editorconfig_file_name }
, which may be controlled by an external user.

if [ "$validate_python_flake8" == 'true' ]; then
echo "PYTHON_FLAKE8_CONFIG_FILE=.flake8" >> "$GITHUB_ENV"
echo "PYTHON_FLAKE8_CONFIG_FILE=${{ inputs.python_flake8_config_file }}" >> "$GITHUB_ENV"

Check warning

Code scanning / CodeQL

Code injection Medium

Potential code injection in
${ inputs.python_flake8_config_file }
, which may be controlled by an external user.

if [ "$validate_python_isort" == 'true' ]; then
echo "PYTHON_ISORT_CONFIG_FILE=.isort.cfg" >> "$GITHUB_ENV"
echo "PYTHON_ISORT_CONFIG_FILE=${{ inputs.python_isort_config_file }}" >> "$GITHUB_ENV"

Check warning

Code scanning / CodeQL

Code injection Medium

Potential code injection in
${ inputs.python_isort_config_file }
, which may be controlled by an external user.

if [ "$validate_python_mypy" == 'true' ]; then
echo "PYTHON_MYPY_CONFIG_FILE=mypy.ini" >> "$GITHUB_ENV"
echo "PYTHON_MYPY_CONFIG_FILE=${{ inputs.python_mypy_config_file }}" >> "$GITHUB_ENV"

Check warning

Code scanning / CodeQL

Code injection Medium

Potential code injection in
${ inputs.python_mypy_config_file }
, which may be controlled by an external user.
@sonarqubecloud
Copy link
Copy Markdown

@jtrobles-cdd jtrobles-cdd merged commit 23aec94 into master Apr 25, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

kind: release Release task Task or chore

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants