Bump boto3 from 1.35.49 to 1.35.85 #1074
Workflow file for this run
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: Super-Linter | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
permissions: {} | |
jobs: | |
super-linter: | |
name: Super-Linter | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
statuses: write | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Super-Linter | |
id: super_linter | |
# yamllint disable-line rule:line-length | |
uses: super-linter/super-linter/slim@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEFAULT_BRANCH: main | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_PYTHON_PYLINT: false | |
VALIDATE_JSCPD: false | |
LINTER_RULES_PATH: / | |
PYTHON_BLACK_CONFIG_FILE: pyproject.toml | |
PYTHON_FLAKE8_CONFIG_FILE: .flake8 | |
PYTHON_ISORT_CONFIG_FILE: pyproject.toml | |
PYTHON_MYPY_CONFIG_FILE: mypy.ini | |
VALIDATE_KUBERNETES_KUBECONFORM: false # Super-Linter doesn't support https://github.com/jtyr/kubeconform-helm | |
VALIDATE_CHECKOV: false # TODO failures to remediate at later date | |
VALIDATE_PYTHON_PYINK: false # we are using Black instead | |
VALIDATE_HTML_PRETTIER: false # incompatible with django templating language | |
VALIDATE_HTML: false # issues with django templating language, need to revist |