Bump scikit-learn version to 1.5.0 (#2292) #1
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: AIRM Linter | |
permissions: read-all | |
on: | |
push: null | |
pull_request: null | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Super Linter | |
runs-on: [k8-runners] | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Super-linter | |
uses: super-linter/super-linter/slim@v6.6.0 | |
env: | |
# To report GitHub Actions status checks | |
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} | |
GITHUB_ACTIONS_COMMAND_ARGS: '-ignore SC.*' | |
VALIDATE_ANSIBLE: false | |
#disabled till code cleanup | |
VALIDATE_BASH: false | |
VALIDATE_BASH_EXEC: false | |
VALIDATE_CHECKOV: false | |
#disabled till code cleanup | |
VALIDATE_CLANG_FORMAT: false | |
#disabled till code cleanup | |
VALIDATE_CPP: false | |
#disabled till code cleanup | |
VALIDATE_DOCKERFILE_HADOLINT: false | |
VALIDATE_GROOVY: false | |
VALIDATE_JSCPD: false | |
VALIDATE_KUBERNETES_KUBECONFORM: false | |
VALIDATE_NATURAL_LANGUAGE: false | |
#disabled python till code cleanup | |
VALIDATE_PYTHON: false | |
VALIDATE_PYTHON_BLACK: false | |
VALIDATE_PYTHON_FLAKE8: false | |
VALIDATE_PYTHON_ISORT: false | |
VALIDATE_PYTHON_MYPY: false | |
VALIDATE_PYTHON_PYLINT: false | |
VALIDATE_PYTHON_RUFF: false | |
#disabled till shell format implementation | |
VALIDATE_SHELL_SHFMT: false | |
YAML_CONFIG_FILE: .yaml-lint.yml |