From 8370c4ac20835002fd1044e1742986072f19289c Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Mon, 7 Aug 2023 09:27:30 -0500 Subject: [PATCH] Add a Dependabot config to auto-update GitHub action versions (#2847) --- .github/dependabot.yml | 6 ++++++ CHANGES | 1 + 2 files changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..8ac6b8c498 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" diff --git a/CHANGES b/CHANGES index 363f2b927d..d78ea92fa0 100644 --- a/CHANGES +++ b/CHANGES @@ -11,6 +11,7 @@ * asyncio: Fix memory leak caused by hiredis (#2693) * Allow data to drain from async PythonParser when reading during a disconnect() * Use asyncio.timeout() instead of async_timeout.timeout() for python >= 3.11 (#2602) + * Add a Dependabot configuration to auto-update GitHub action versions. * Add test and fix async HiredisParser when reading during a disconnect() (#2349) * Use hiredis-py pack_command if available. * Support `.unlink()` in ClusterPipeline