From bede24b8902c6df46e0acf9f7509613cdcf1e967 Mon Sep 17 00:00:00 2001 From: Matthias Schoettle Date: Wed, 8 Apr 2026 14:38:08 -0400 Subject: [PATCH] chore: disable action pinning of our own actions and workflows --- renovate-base.json5 | 16 ++++++++++++++++ renovate.json5 | 5 ----- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/renovate-base.json5 b/renovate-base.json5 index 892d6e6..f901339 100644 --- a/renovate-base.json5 +++ b/renovate-base.json5 @@ -8,6 +8,11 @@ // Extend a best-practices base preset // See: https://github.com/mschoettle/renovate-presets#best-practices "github>mschoettle/renovate-presets//presets/best-practices.json5", + // set timezone to local one to ensure schedules are run + // https://docs.renovatebot.com/configuration-options/#timezone + ":timezone(America/Toronto)", + // https://docs.renovatebot.com/presets-customManagers/#custommanagersgithubactionsversions + "customManagers:githubActionsVersions", ], // https://docs.renovatebot.com/configuration-options/#labels "labels": ["dependencies"], @@ -27,5 +32,16 @@ "matchManagers": ["github-actions"], "matchPackageNames": ["actions/upload-artifact", "actions/download-artifact"], }, + // Disable action pinning for our own actions and workflows + { + "matchDepTypes": [ + "action" + ], + "pinDigests": false, + "matchPackageNames": [ + "opalmedapps/actions", + "opalmedapps/.github", + ], + }, ], } diff --git a/renovate.json5 b/renovate.json5 index e7c8250..7bc8f30 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -6,11 +6,6 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "github>opalmedapps/.github//renovate-base.json5", - // set timezone to local one to ensure schedules are run - // https://docs.renovatebot.com/configuration-options/#timezone - ":timezone(America/Toronto)", - // https://docs.renovatebot.com/presets-customManagers/#custommanagersgithubactionsversions - "customManagers:githubActionsVersions", ], // https://docs.renovatebot.com/configuration-options/#assignees "assignees": [],