We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07e43a2 commit afdba76Copy full SHA for afdba76
.github/workflows/update-supported-enterprise-server-versions/update.py
@@ -35,7 +35,9 @@ def main():
35
36
if oldest_supported_release is None or release_version < oldest_supported_release:
37
end_of_life_date = datetime.date.fromisoformat(release_data["end"])
38
- if end_of_life_date > datetime.date.today():
+ # The GHES version is not actually end of life until the end of the day specified by
39
+ # `end_of_life_date`. Wait an extra week to be safe.
40
+ if end_of_life_date > datetime.date.today() + datetime.timedelta(weeks=1):
41
oldest_supported_release = release_version
42
43
api_compatibility_data = {
0 commit comments