mirror of
https://github.com/coredns/coredns.git
synced 2026-07-10 17:50:12 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](df4cb1c069...9c091bb21b)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Verify Generated Files
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
verify-generate:
|
|
name: Verify make gen
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
|
with:
|
|
go-version-file: .go-version
|
|
- name: Run make gen
|
|
run: make gen
|
|
- name: Check for uncommitted changes
|
|
run: |
|
|
UNTRACKED=$(git ls-files --others --exclude-standard)
|
|
if [ -n "$UNTRACKED" ]; then
|
|
echo "ERROR: make gen produced untracked files:"
|
|
echo "$UNTRACKED"
|
|
echo ""
|
|
echo "Run 'make gen' and commit the result."
|
|
exit 1
|
|
fi
|
|
if ! git diff --exit-code; then
|
|
echo ""
|
|
echo "ERROR: Generated files are out of date."
|
|
echo "Run 'make gen' and commit the result."
|
|
exit 1
|
|
fi
|