Drupal - Disable cache for specific blocks
If this is a custom block, then you can use the Cache API, and set the cache max age to 0, eg
$build = [
// ...
'#cache' => [
'max-age' => 0,
],
];
If it is an existing block, then you can alter it to add this into the render array.