@BeeBayLearnDev111

Two comments:

  1. Action 3 is running on a list from step 1 while using fields from step 1. Circular logic does not work.
  2. On step 4 a perpetual loop is being created. Every time you run this flow it never stops.

Solution

  1. Avoid circular logic or structure the run of your list in a way that uses data where data is coming from some where.
  2. You need to create a start/end of the loop logic. Explore how recursive logic works.