Skip to content

Helm Update

Helm Update #2

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 -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