You can manually set the value of the column to its current value in the update command:
UPDATE table SET x=y, timestampColumn=timestampColumn WHERE a=b;
If you don’t set the value in the query, it will be updated to the current timestamp as per the table definition.