fix(container): update image ghcr.io/nginxinc/nginx-unprivileged to v1.27.3 #1610
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Kubeconform" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main"] | |
paths: ["kubernetes/**"] | |
env: | |
KUBERNETES_DIR: ./kubernetes | |
jobs: | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Kube Tools | |
uses: yokawasa/action-setup-kube-tools@9e25a4277af127b60011c95b6ed2da7e3b3613b1 # v0.11.2 | |
with: | |
setup-tools: | | |
kubectl | |
kubeconform | |
kustomize | |
- name: Run kubeconform | |
run: | | |
bash ./.github/scripts/kubeconform.sh ${{ env.KUBERNETES_DIR }} |