Core component of SQL Server for storing, processing, and securing data
So while you could filter the server audit by the actions, that seems heavy-handed. Why not set up the database audit specification to only capture the operations you want:
CREATE DATABASE AUDIT SPECIFICATION AuditSpec FOR SERVER AUDIT YourServerAudit
ADD (INSERT, UPDATE, DELETE ON dbo.Orders BY public)
WITH (STATE = ON)