Skip to content

Bump goreleaser/goreleaser-action from 6.1.0 to 6.2.1 #347

Bump goreleaser/goreleaser-action from 6.1.0 to 6.2.1

Bump goreleaser/goreleaser-action from 6.1.0 to 6.2.1 #347

Workflow file for this run

name: jsonnetfmt
on:
push:
branches:
- main
pull_request: {}
jobs:
jsonnetfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.mod
- name: Format
run: |
go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest
./scripts/jsonnetfmt.sh
- run: |
STATUS="$(git status --porcelain)"
test -z "${STATUS}" || {
echo "Found changes after formatting. Run jsonnetfmt on the following files:"
echo "${STATUS}"
exit 1
}