From 714da58c268e5b060c471e16771fe1fc61674df3 Mon Sep 17 00:00:00 2001 From: Alexis Coles Date: Thu, 20 Mar 2025 15:38:09 +0000 Subject: [PATCH] fix(DEVOPS-7808): pin changed-files action to a known good version # [DEVOPS-7808] ## Changes due to incident https://lendable.slack.com/archives/C08HNKQ4F7G We are moving all GitHub Action references to git sha1 rather than tags We will use renovote to achive this and therefore need to enable it in all repositories. We also need to ensure that all renovate config extends from the [lendable base config](https://github.com/Lendable/renovate-config/blob/main/default.json) --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..99844160 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>Lendable/renovate-config" + ] +}