gae-interop-testing: Upgrade to Java 17 (#11710)

Java 11 is out-of-support on GAE. Unfortunately the docs use the term
"deprecated" as "deleted," not "discouraged." So they talk about it
being deprecated _after_ it is no longer supported.

https://cloud.google.com/appengine/docs/standard/lifecycle/support-schedule#java
https://cloud.google.com/appengine/docs/flexible/lifecycle/support-schedule#java

Backport of #11699
This commit is contained in:
Vindhya Ningegowda 2024-11-26 17:26:52 -08:00 committed by GitHub
parent 2636d5dda0
commit 197a15c9c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@
<!-- [START config] --> <!-- [START config] -->
<appengine-web-app xmlns='http://appengine.google.com/ns/1.0'> <appengine-web-app xmlns='http://appengine.google.com/ns/1.0'>
<service>java-gae-interop-test</service> <service>java-gae-interop-test</service>
<runtime>java11</runtime> <runtime>java17</runtime>
</appengine-web-app> </appengine-web-app>
<!-- [END config] --> <!-- [END config] -->