From e8d87b7fdc7d3c0099aa969617303d950014ef41 Mon Sep 17 00:00:00 2001 From: Jesse MacFadyen Date: Tue, 28 Jan 2025 15:26:32 -0800 Subject: [PATCH] This implements #138 --- src/build-actions.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/build-actions.js b/src/build-actions.js index abe3f8a..37e731a 100644 --- a/src/build-actions.js +++ b/src/build-actions.js @@ -339,6 +339,7 @@ const buildActions = async (config, filterActions, skipCheck = false, emptyDist // fullHash is what we will use to compare if the action has changed // this is a hash of the action folder, and all its dependencies const fullHash = crypto.createHash('sha256') + fullHash.update(actionPath) fullHash.update(srcHash.hash) depHashes.forEach(hash => { fullHash.update(hash)