From 0e08c50e07de43bad36e6a54638a20b0c9a8b931 Mon Sep 17 00:00:00 2001 From: Kush Trivedi <44091822+kushthedude@users.noreply.github.com> Date: Thu, 7 Jan 2021 13:07:24 +0530 Subject: [PATCH] feat: introduce dependabot for cypress suite (#3447) Signed-off-by: Kush Trivedi --- .github/dependabot.yml | 10 +++++++++- main/tests/cypress/yarn.lock | 8 ++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 21cbc2a5f..7cb4af948 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,6 +3,7 @@ version: 2 updates: +# For openrefine java deps - package-ecosystem: maven directory: "/" schedule: @@ -13,11 +14,18 @@ updates: versions: - "> 1.4.12" - "< 2" +# For documentation website - package-ecosystem: "npm" # For Yarn - directory: "/" + directory: "docs/" schedule: interval: "daily" +# For github actions - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" +# For cypress test_suite +- package-ecosystem: "npm" + directory: "main/tests/cypress" + schedule: + interval: "daily" diff --git a/main/tests/cypress/yarn.lock b/main/tests/cypress/yarn.lock index 6085e7df2..70945c789 100644 --- a/main/tests/cypress/yarn.lock +++ b/main/tests/cypress/yarn.lock @@ -377,10 +377,10 @@ cypress-wait-until@^1.7.1: resolved "https://registry.yarnpkg.com/cypress-wait-until/-/cypress-wait-until-1.7.1.tgz#3789cd18affdbb848e3cfc1f918353c7ba1de6f8" integrity sha512-8DL5IsBTbAxBjfYgCzdbohPq/bY+IKc63fxtso1C8RWhLnQkZbVESyaclNr76jyxfId6uyzX8+Xnt0ZwaXNtkA== -cypress@6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-6.0.0.tgz#57050773c61e8fe1e5c9871cc034c616fcacded9" - integrity sha512-A/w9S15xGxX5UVeAQZacKBqaA0Uqlae9e5WMrehehAdFiLOZj08IgSVZOV8YqA9OH9Z0iBOnmsEkK3NNj43VrA== +cypress@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-6.0.1.tgz#86857ca2f527c3723575737deab42fd8f2a209df" + integrity sha512-3xtQZ0YM65soLgKQUgn2wg2IbWsM6A2yBg6L4RF31mZHr5LNKdO2/9sgiwxEVMKu2C2m6+IQ75zHP41kZP5rPg== dependencies: "@cypress/listr-verbose-renderer" "^0.4.1" "@cypress/request" "^2.88.5"