Skip to content

Bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1 #352

Bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1

Bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1 #352

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