From 269d45b2a47ff669f150116d5ef05a34a0ebf416 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:10:21 +0000 Subject: [PATCH] Bump WyriHaximus/github-action-helm3 from 3 to 4 Bumps [WyriHaximus/github-action-helm3](https://github.com/wyrihaximus/github-action-helm3) from 3 to 4. - [Release notes](https://github.com/wyrihaximus/github-action-helm3/releases) - [Commits](https://github.com/wyrihaximus/github-action-helm3/compare/v3...v4) --- updated-dependencies: - dependency-name: WyriHaximus/github-action-helm3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/helm-local.yml | 2 +- .github/workflows/helm-remote.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 }}'