Skip to content

Commit

Permalink
🔒 Resolve zizmor warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rblaine95 committed Feb 5, 2025
1 parent 28322cb commit c168a8f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/actions/deploy-eks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ runs:

- name: Update Kubeconfig
shell: bash
run: aws eks update-kubeconfig --name ${{ inputs.cluster-name }} --region ${{ inputs.aws-region }}
run: aws eks update-kubeconfig --name $CLUSTER_NAME --region $REGION
env:
CUSTER_NAME: ${{ inputs.cluster-name }}
REGION: ${{ inputs.aws-region }}

- name: Helmfile Destroy
if: inputs.clean-start == 'true'
Expand All @@ -79,8 +82,10 @@ runs:
--from-file=./resources/connect-processors/cloud/streams/state-monitoring.yaml \
--dry-run=client \
-o yaml \
-n ${{ inputs.namespace }} | kubectl apply -f -
kubectl -n ${{ inputs.namespace }} rollout restart deploy/connect-cloud || true
-n $NAMESPACE | kubectl apply -f -
kubectl -n $NAMESPACE rollout restart deploy/connect-cloud || true
env:
NAMESPACE: ${{ inputs.namespace }}

- name: Helmfile Apply
# https://github.com/helmfile/helmfile-action
Expand Down

0 comments on commit c168a8f

Please sign in to comment.