chore(deps): update quay.io/redhat-appstudio/cachi2 docker tag to v0.8.0 #2861
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: Validate PR - buildah-remote | |
'on': | |
pull_request: | |
branches: [main] | |
jobs: | |
go: | |
name: Check Buildah Remote | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Install Go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5 | |
with: | |
go-version-file: './task-generator/go.mod' | |
- name: Check buildah remote | |
run: | | |
./hack/generate-buildah-remote.sh | |
if [[ ! -z $(git status -s) ]] | |
then | |
echo "buildah-remote is not up to date, run ./hack/generate-buildah-remote.sh" | |
git status -s | |
git --no-pager diff | |
exit 1 | |
fi |