diff --git a/setup.cfg b/setup.cfg
index 27fafc04a6b09aeddb056f8682dc70741bcd2f17..51d762ac232fa9da8bd81fe044f2fef3f962fe9a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -24,7 +24,7 @@ packages=find:
 python_requires = >=3.6
 install_requires = 
     ewokscore >=0.4.1
-    pypushflow >=0.6.0
+    pypushflow >=0.6.1
 
 [options.packages.find]
 where=src
diff --git a/src/ewoksppf/bindings.py b/src/ewoksppf/bindings.py
index 375b032f31147dd372a2d7ad0340e2b3ec894bc9..d6245687cf23e6f66b2dc7df25bcdbea6c95fda1 100644
--- a/src/ewoksppf/bindings.py
+++ b/src/ewoksppf/bindings.py
@@ -77,12 +77,21 @@ class EwoksPythonActor(PythonActor):
         super().__init__(**kw)
 
     def trigger(self, inData: dict):
+        # Update the INFOKEY with node information
         infokey = ppfrunscript.INFOKEY
         inData[infokey] = dict(inData[infokey])
         inData[infokey]["node_id"] = self.node_id
         inData[infokey]["node_attrs"] = self.node_attrs
         return super().trigger(inData)
 
+    def compileDownstreamData(self, result: dict) -> dict:
+        # Merging inputs and outputs to trigger the next task
+        # is not an ewoks convention. `ppfmethod` tasks still
+        # have it thanks to `ewokscore.ppftasks`.
+        #
+        # We do need to take INFOKEY from the inputs.
+        return {ppfrunscript.INFOKEY: self.inData[ppfrunscript.INFOKEY], **result}
+
     def uploadInDataToMongo(self, **kw):
         task_identifier = self.node_attrs.get("task_identifier")
         if task_identifier: