diff --git a/.github/actions/helm-remote/action.yml b/.github/actions/helm-remote/action.yml index 4bf22502..eca77c85 100644 --- a/.github/actions/helm-remote/action.yml +++ b/.github/actions/helm-remote/action.yml @@ -32,11 +32,11 @@ runs: using: "composite" steps: - name: Add dependencies - uses: WyriHaximus/github-action-helm3@v3 + uses: WyriHaximus/github-action-helm3@v4 with: exec: helm repo add ${{ env.CHART_URL }} - name: Deploy - uses: WyriHaximus/github-action-helm3@v3 + uses: WyriHaximus/github-action-helm3@v4 with: exec: helm upgrade '${{ env.APP_NAME }}' ${{ env.CHART_NAME }} --install --create-namespace --namespace=${{ env.NAMESPACE }} -f=${{ env.APP_NAME }}/values/${{ inputs.CLOUD_PROVIDER }}/values_${{ inputs.REGION }}_${{ inputs.CLUSTER_NAME }}.yaml kubeconfig: '${{ secrets.KUBECONFIG }}' diff --git a/.github/workflows/helm-local.yml b/.github/workflows/helm-local.yml index 881b4614..4d40879c 100644 --- a/.github/workflows/helm-local.yml +++ b/.github/workflows/helm-local.yml @@ -55,7 +55,7 @@ jobs: run: helm dependency update ./${{ inputs.CHART_PATH }} shell: bash - name: Deploy - uses: WyriHaximus/github-action-helm3@v3 + uses: WyriHaximus/github-action-helm3@v4 with: exec: helm upgrade '${{ inputs.APP_NAME }}' ${{ inputs.CHART_PATH }} --install --create-namespace --namespace=${{ inputs.NAMESPACE }} -f=${{ inputs.CHART_PATH }}/values/${{ inputs.ENVIRONMENT }}/${{ inputs.CLOUD_PROVIDER }}/values_${{ inputs.REGION }}_${{ inputs.CLUSTER_NAME }}.yaml kubeconfig: '${{ secrets.KUBECONFIG }}' diff --git a/.github/workflows/helm-remote.yml b/.github/workflows/helm-remote.yml index 8c1c1a0b..0211b83c 100644 --- a/.github/workflows/helm-remote.yml +++ b/.github/workflows/helm-remote.yml @@ -55,11 +55,11 @@ jobs: with: version: v3.8.1 - name: Add dependencies - uses: WyriHaximus/github-action-helm3@v3 + uses: WyriHaximus/github-action-helm3@v4 with: exec: helm repo add ${{ inputs.CHART_URL }} - name: Deploy - uses: WyriHaximus/github-action-helm3@v3 + uses: WyriHaximus/github-action-helm3@v4 with: exec: helm upgrade '${{ inputs.APP_NAME }}' ${{ inputs.CHART_NAME }} --install --create-namespace --namespace=${{ inputs.NAMESPACE }} -f=${{ inputs.APP_NAME }}/values/${{ inputs.ENVIRONMENT }}/${{ inputs.CLOUD_PROVIDER }}/values_${{ inputs.REGION }}_${{ inputs.CLUSTER_NAME }}.yaml kubeconfig: '${{ secrets.KUBECONFIG }}'