Skip to content

chore(deps): update dependency gruntwork-io/terragrunt to v0.48.1 #4836

chore(deps): update dependency gruntwork-io/terragrunt to v0.48.1

chore(deps): update dependency gruntwork-io/terragrunt to v0.48.1 #4836

Workflow file for this run

name: generate
on:
pull_request:
defaults:
run:
shell: bash
concurrency:
group: "${{ github.workflow }}/${{ github.ref }}"
cancel-in-progress: true
jobs:
generate:
name: ensure fakes are up to date
runs-on: ubuntu-latest
container:
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main
steps:
- uses: actions/checkout@v3
- name: Go Build
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
pushd src/autoscaler
make buildtools
make generate
git diff
git status
popd
- name: Check if there is any change
id: get_changes
run: echo "changed=$(git status --porcelain | wc -l)" >> "${GITHUB_OUTPUT}"
- name: Process changes
if: steps.get_changes.outputs.changed != 0
run: |
git status
echo "::error::Fakes are out of date, run make generate to update"
exit 1