Skip to content

Commit 7a96d6a

Browse files
committed
fix: resolve merge conflict in go.mod
Take newer upstream dependency versions and keep golang.org/x/mod addition.
2 parents 08cf62c + 089fba5 commit 7a96d6a

154 files changed

Lines changed: 7675 additions & 1575 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/build-docker-images/action.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,17 @@ runs:
161161
unset ALPINE_TAG
162162
fi
163163
164-
docker buildx bake \
165-
--push \
166-
-f docker/docker-bake.hcl \
167-
server admin-tools
164+
for attempt in 1 2 3; do
165+
echo "Docker build/push attempt $attempt/3"
166+
if timeout 1200 docker buildx bake \
167+
--push \
168+
-f docker/docker-bake.hcl \
169+
server admin-tools; then
170+
exit 0
171+
fi
172+
if [ "$attempt" -lt 3 ]; then
173+
echo "Attempt $attempt failed, retrying in 30s..."
174+
sleep 30
175+
fi
176+
done
177+
exit 1

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414
jobs:
1515
build-and-push-docker:
1616
runs-on: ubuntu-latest
17+
timeout-minutes: 90
1718
# Only push for main, cloud, release branches (not feature)
1819
if: |
1920
github.ref == 'refs/heads/main' ||

api/errordetails/v1/message.go-helpers.pb.go

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/errordetails/v1/message.pb.go

Lines changed: 50 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)