Skip to content

Commit 4fda846

Browse files
committed
[SDK]: Chore: Fix AWS dependencies in dependabot config (#5760)
<!-- start pr-codex --> ## PR-Codex overview This PR updates the `.github/dependabot.yml` configuration file to include new dependencies to be ignored during updates for specific versions of AWS SDK clients. ### Detailed summary - Added `ignore` section for dependencies: - `@aws-sdk/client-kms`: version `3.592.0` - `@aws-sdk/client-lambda`: version `3.592.0` - `@aws-sdk/credential-providers`: version `3.592.0` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent d85df8b commit 4fda846

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "npm" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: "npm"
9+
directory: "/"
1010
schedule:
1111
interval: "weekly"
12+
ignore:
13+
- dependency-name: "@aws-sdk/client-kms"
14+
versions: ["3.592.0"]
15+
- dependency-name: "@aws-sdk/client-lambda"
16+
versions: ["3.592.0"]
17+
- dependency-name: "@aws-sdk/credential-providers"
18+
versions: ["3.592.0"]
1219
- package-ecosystem: "github-actions"
1320
directory: "/"
1421
schedule:
15-
# Check for updates to GitHub Actions every week
1622
interval: "weekly"

0 commit comments

Comments
 (0)