Skip to content

Commit

Permalink
Add dependabot instruction to ignore redis and sidekiq version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
plisovin committed Jun 15, 2023
1 parent 1fea3d6 commit 226fc1a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ updates:
directory: /
schedule:
interval: monthly
ignore:
# TODO: Remove this ignore config once moved to a Redis v6.2+ instance in AKS.
# The version is currently pinned to <7. We're unable to upgrade sidekiq as it requires out Redis service
# instance to be 6.2+ https://github.com/sidekiq/sidekiq/blob/main/docs/7.0-Upgrade.md#version-support.
# Our current Redis service instance is 5.0.6. This will be upgraded when we migrate from GOVuk PaaS to AKS.
- dependency-name: "sidekiq"
update-types: ["version-update:semver-major"]

# TODO: Remove this ignore config once moved to a Redis v6.2+ instance in AKS.
# The version is currently pinned to <5 by sidekiq (version 6.5.8).
# It seems this pin is removed by later sidekiq versions, but we're unable to upgrade sidekiq as it requires out
# Redis service instance to be 6.2+ https://github.com/sidekiq/sidekiq/blob/main/docs/7.0-Upgrade.md#version-support.
# Our current Redis service instance is 5.0.6. This will be upgraded when we migrate from GOVuk PaaS to AKS.
- dependency-name: "redis"
update-types: ["version-update:semver-major"]


- package-ecosystem: npm
directory: /
Expand Down

0 comments on commit 226fc1a

Please sign in to comment.