Skip to content

feat(STONEINTG-1098): poc of setting default KFP_GIT_URL for snyk check #6537

feat(STONEINTG-1098): poc of setting default KFP_GIT_URL for snyk check

feat(STONEINTG-1098): poc of setting default KFP_GIT_URL for snyk check #6537

name: Validate PR - buildah-remote
'on':
pull_request:
branches: [main]
jobs:
go:
name: Check Buildah Remote
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version-file: './task-generator/remote/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