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": [],