tools: fix update-sha.sh so the Envoy API auto-update job works again#507
Merged
Merged
Conversation
Signed-off-by: Basundhara Chakrabarty <basundhara17061996@gmail.com>
agrawroh
approved these changes
Jun 10, 2026
phlax
approved these changes
Jun 10, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Envoy API is stuck at v1.37.2 because the scheduled update-protobuf job has been failing
on every run, for example:
https://github.com/envoyproxy/java-control-plane/actions/runs/27202007279/job/80308114011
The break is in tools/update-sha.sh:
release_datewas removed from repository_locations.bzl, so find_date aborts thescript (under
set -e -o pipefail) before API_SHAS is written → update-api.sh failswith
gzip: stdin: not in gzip format.Fix: tolerate the missing release_date, resolve the tag SHA via /commits/{ref}, and
look up the renamed xds dep.
Verified:
./update-sha.sh v1.38.1 | tee API_SHAS && ./update-api.shnow bumps cleanly to v1.38.1.