Where to find time & date of previous or last upgrade?

# Search DNF history for system-upgrade
sudo dnf history list | grep -e system-upgrade

# Sort DNF history by the number of changes
sudo dnf history list | sort -n -t "|" -k 5
3 Likes