Skip to content

Bump k8s.io/cri-api from 0.31.0 to 0.31.1 #238

Bump k8s.io/cri-api from 0.31.0 to 0.31.1

Bump k8s.io/cri-api from 0.31.0 to 0.31.1 #238

Workflow file for this run

name: helm
on:
pull_request:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run helm-docs
run: make helm-docs
- name: Check if working tree is dirty
run: |
if [[ $(git diff --stat) != '' ]]; then
git diff
echo 'run make helm-docs and commit changes'
exit 1
fi