backport of commit ad415b67ace965dd43208ab0b515de1a51e392fb #10545
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: "make-gen-delta" | |
on: | |
- workflow_dispatch | |
- push | |
- workflow_call | |
permissions: | |
contents: read | |
jobs: | |
make-gen-delta: | |
name: "Check for uncommitted changes from make gen" | |
runs-on: ${{ fromJSON(vars.RUNNER) }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: '0' | |
- name: Determine Go version | |
id: get-go-version | |
# We use .go-version as our source of truth for current Go | |
# version, because "goenv" can react to it automatically. | |
run: | | |
echo "Building with Go $(cat .go-version)" | |
echo "go-version=$(cat .go-version)" >> "$GITHUB_OUTPUT" | |
- name: Set up Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 | |
with: | |
go-version: "${{ steps.get-go-version.outputs.go-version }}" | |
- name: Running go mod tidy | |
run: | | |
go mod tidy | |
- name: Install Dependencies | |
run: | | |
make tools | |
- name: Running make gen | |
run: | | |
make gen | |
- name: Check for changes | |
run: | | |
git diff --exit-code | |
git status --porcelain | |
test -z "$(git status --porcelain)" |