Update plugin SDK to v0.219.0 (#85438)

This commit is contained in:
Andres Martinez Gotor
2024-04-02 10:22:24 +02:00
committed by GitHub
parent 81fd8f4126
commit d2ca95d304
9 changed files with 29 additions and 27 deletions
+6 -4
View File
@@ -18,8 +18,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set go version
uses: actions/setup-go@v4
@@ -32,7 +30,9 @@ jobs:
- name: Check for go mod & workspace changes
run: |
if ! git diff --exit-code --quiet; then
echo "Changes detected. Please run 'go work sync' and commit the changes."
echo "Changes detected:"
git diff
echo "Please run 'go work sync' and commit the changes."
exit 1
fi
@@ -42,6 +42,8 @@ jobs:
- name: Check for go workspace changes
run: |
if ! git diff --exit-code --quiet; then
echo "Changes detected. Please run 'make build-go' and commit the changes."
echo "Changes detected:"
git diff
echo "Please run 'make build-go' and commit the changes."
exit 1
fi