remove deprecated datautil methods (#558) #413
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: Lint Codebase | |
on: | |
push: | |
branches: [ master, release/**, patch/** ] | |
pull_request: | |
branches: [ master, release/**, patch/** ] | |
permissions: | |
contents: read | |
statuses: write | |
jobs: | |
super-linter: | |
name: 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 | |
ref: ${{ github.head_ref || github.ref }} | |
- name: Lint Code Base | |
uses: github/super-linter/[email protected] | |
env: | |
LOG_LEVEL: NOTICE | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# setting this to false means that only changed files will be scanned in each commit | |
VALIDATE_ALL_CODEBASE: ${{ github.event_name != 'pull_request' }} | |
# Enable Linters to run | |
VALIDATE_GITHUB_ACTIONS: true | |
# VALIDATE_GOOGLE_JAVA_FORMAT: true | |
JAVA_FILE_NAME: ../../contrib/checkstyle.xml | |
VALIDATE_DOCKERFILE_HADOLINT: true | |
DOCKERFILE_HADOLINT_FILE_NAME: ../../contrib/docker/.hadolint.yaml | |
# VALIDATE_MARKDOWN: true | |
VALIDATE_XML: true | |
VALIDATE_YAML: true | |
FILTER_REGEX_EXCLUDE: .*contrib/helm.* |