Bump google.golang.org/api from 0.193.0 to 0.194.0 #94
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: Check if generated files are up to date | |
on: | |
pull_request: | |
jobs: | |
check-generated: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- run: | | |
# Generate files. | |
make manifests generate credits | |
# Check if the worktree is clean. | |
git add . | |
git diff --staged --quiet |