Check Helm Dependencies Version #10
This file contains hidden or 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: "Check Helm Dependencies Version" | |
| on: workflow_dispatch | |
| jobs: | |
| check-helm-dependencies: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v3 | |
| with: | |
| version: 'latest' | |
| - name: Install Python virtualenv | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install virtualenv | |
| - name: Run Helm dependencies check | |
| run: make check-dependencies ARGS="--workers 5" |