Liquibase Attempting to Run Twice

I ran all my liquibase changessets and the db (Oracle) was created successfully. over the period of several days, I ran update several times and it ran successfully. This morning when I the CI build ran, I noticed that the liquibase update task is failing because it is trying to rerun changesets that ran before. All entries in the DATABASECHANGELOG are marked as “EXECUTED”. I didn’t change the changesets at all. Any thoughts?

An update about this: I figured out what the issue was. The GOCD pipeline that was kicking off that process was renamed which resulted in a renaming of the file path so liquibase attempted running those changesets again. The scripts should have been using relative path instead of full path. Thanks