gemini-code-assist[bot] commented on code in PR #35732:
URL: https://github.com/apache/beam/pull/35732#discussion_r2241147393
##########
runners/google-cloud-dataflow-java/build.gradle:
##########
@@ -52,8 +52,8 @@ evaluationDependsOn(":sdks:java:container:java11")
ext.dataflowLegacyEnvironmentMajorVersion = '8'
ext.dataflowFnapiEnvironmentMajorVersion = '8'
-ext.dataflowLegacyContainerVersion = 'beam-master-20250605'
-ext.dataflowFnapiContainerVersion = 'beam-master-20250605'
+ext.dataflowLegacyContainerVersion = 'beam-master-20250729'
+ext.dataflowFnapiContainerVersion = 'beam-master-20250729'
Review Comment:

To improve maintainability and avoid potential inconsistencies, it's better
to define the container version string only once and reuse it. This ensures
that both `dataflowLegacyContainerVersion` and `dataflowFnapiContainerVersion`
are always kept in sync.
```
ext.dataflowLegacyContainerVersion = 'beam-master-20250729'
ext.dataflowFnapiContainerVersion = ext.dataflowLegacyContainerVersion
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]