fix: fix hgctl in high kubenetes version problem by auto detecting k8s version and adding helm lookup function #936
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: License checker | |
on: | |
pull_request: | |
branches: [ develop, main ] | |
jobs: | |
check-license: | |
runs-on: ubuntu-latest | |
steps: | |
# step 1 | |
- name: Checkout | |
uses: actions/[email protected] | |
# step 2 | |
- name: Check License Header | |
uses: apache/skywalking-eyes/header@25edfc2fd8d52fb266653fb5f6c42da633d85c07 | |
with: | |
log: info | |
config: .licenserc.yaml | |
mode: check | |
# step 3 | |
- name: Check Dependencies' License | |
uses: apache/skywalking-eyes/dependency@25edfc2fd8d52fb266653fb5f6c42da633d85c07 | |
with: | |
log: info | |
config: .licenserc.yaml | |
mode: check |