Note this section in particular: - Each version of ChromeDriver supports Chrome with matching major, minor,
and build version numbers. For example, ChromeDriver 73.0.3683.20
supports all Chrome versions that start with 73.0.3683.
This means that ChromeDriver 102.0.5005.61 supports all Chrome versions that start with 102.0.5005, which includes 102.0.5005.63.
In the sets of 4 digits separated by a period, only the first three sets need to match between ChromeDriver and Chrome. This allows the ChromeDriver project and the Chrome project some flexibility to make fixes to their own projects that don't require the other project to issue a new build without any code changes.
The entire linked page is worth reading (it's short).