Helm Update #10
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: Helm Update | |
"on": | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
helm_repo_update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Helm | |
run: | | |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/v3.9.1/scripts/get-helm-3 | |
chmod 700 get_helm.sh | |
./get_helm.sh | |
- name: Check Helm Version | |
run: helm version | |
- name: Run Helm Repo Update | |
if: ${{ github.event_name == 'schedule' }} | |
run: | | |
./bin/helm-repo-update.sh --update-all --pull-request --gitea-actions --skip-charts argo-cd |