Skip to content

Helm Update

Helm Update #324

Workflow file for this run

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