The BigQuery CURRENT_DATE function returns the date at the time the query is evaluated. By default the date will be in UTC timezone but a specific timezone can be selected.
CURRENT_DATE([time_zone])
SELECT
CURRENT_DATE() AS date_utc,
CURRENT_DATE('Australia/Sydney') AS date_sydney,
CURRENT_DATE('+08:00') AS date_plus_8