This repository was archived by the owner on Apr 7, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,10 +15,8 @@ set -e
1515function get_latest_released_version() {
1616 local group_id=$1
1717 local artifact_id=$2
18- group_id_url_path=" $( sed ' s|\.|/|g' <<< " ${group_id}" ) "
19- url=" https://repo1.maven.org/maven2/${group_id_url_path} /${artifact_id} /maven-metadata.xml"
20- xml_content=$( curl -s --fail " ${url} " )
21- latest=$( xmllint --xpath ' metadata/versioning/latest/text()' - <<< " ${xml_content}" )
18+ json_content=$( curl -s " https://search.maven.org/solrsearch/select?q=g:${group_id} +AND+a:${artifact_id} &core=gav&rows=500&wt=json" )
19+ latest=$( jq -r ' .response.docs[] | select(.v | test("^[0-9]+(\\.[0-9]+)*$")) | .v' <<< " ${json_content}" | sort -V | tail -n 1)
2220 if [[ -z " ${latest} " ]]; then
2321 echo " The latest version of ${group_id} :${artifact_id} is empty."
2422 echo " The returned json from maven.org is invalid: ${json_content} "
Original file line number Diff line number Diff line change 3030 with :
3131 fetch-depth : 0
3232 token : ${{ secrets.CLOUD_JAVA_BOT_TOKEN }}
33- - name : Install Dependencies
34- shell : bash
35- run : sudo apt-get update && sudo apt-get install -y libxml2-utils
3633 - name : Update params in generation config to latest
3734 shell : bash
3835 run : |
Original file line number Diff line number Diff line change 33# Configure the docker image for kokoro-trampoline.
44env_vars: {
55 key: " TRAMPOLINE_IMAGE"
6- value: " gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.50.2 " # {x-version-update:google-cloud-shared-dependencies:current}
6+ value: " gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.49.0 " # {x-version-update:google-cloud-shared-dependencies:current}
77}
88
99env_vars: {
Original file line number Diff line number Diff line change 33# Configure the docker image for kokoro-trampoline.
44env_vars: {
55 key: " TRAMPOLINE_IMAGE"
6- value: " gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.50.2 " # {x-version-update:google-cloud-shared-dependencies:current}
6+ value: " gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.49.0 " # {x-version-update:google-cloud-shared-dependencies:current}
77}
88
99env_vars: {
Original file line number Diff line number Diff line change 33# Configure the docker image for kokoro-trampoline.
44env_vars: {
55 key: " TRAMPOLINE_IMAGE"
6- value: " gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.50.2 " # {x-version-update:google-cloud-shared-dependencies:current}
6+ value: " gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_c:3.49.0 " # {x-version-update:google-cloud-shared-dependencies:current}
77}
88
99env_vars: {
You can’t perform that action at this time.
0 commit comments