fix(helm): update chart grafana to 6.61.1 #3873
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 | |
SCHEMA_DIR: /home/runner/.datree/crdSchemas | |
jobs: | |
kubeconform: | |
name: Kubeconform | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
id: generate-token | |
with: | |
app_id: "${{ secrets.BOT_APP_ID }}" | |
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
token: "${{ steps.generate-token.outputs.token }}" | |
- name: Setup Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Setup Tools | |
shell: bash | |
run: brew install fluxcd/tap/flux kubeconform kustomize | |
- name: Download CRDs | |
shell: bash | |
run: | | |
mkdir -p ${{ env.SCHEMA_DIR }} | |
flux pull artifact oci://ghcr.io/onedr0p/manifests/kubernetes-schemas:latest \ | |
--output=${{ env.SCHEMA_DIR }} | |
- name: Run kubeconform | |
shell: bash | |
run: bash ./.github/scripts/kubeconform.sh ${{ env.KUBERNETES_DIR }} ${{ env.SCHEMA_DIR }} |