Helm Update #362
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 -LO https://get.helm.sh/helm-v3.9.1-linux-amd64.tar.gz | |
tar -zxvf helm-v3.9.1-linux-amd64.tar.gz | |
mv linux-amd64/helm /usr/local/bin/helm | |
- 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 |