Skip to content

Commit b0905eb

Browse files
committed
fix: install colordiff as sudo
1 parent ae968ff commit b0905eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/k8s_deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
env:
7171
KUBECTL_EXTERNAL_DIFF: "colordiff -N -u"
7272
run: |
73-
apt-get install colordiff --yes
73+
sudo apt-get update
74+
sudo apt-get install colordiff
7475
kubectl kustomize ${{ env.KUBERNETES_MANIFEST_PATH }} --output apply.yml
7576
kubectl diff --filename apply.yml || true
7677

0 commit comments

Comments
 (0)