From 559b8e421ab256015097ad3f4c8f88d04bd0997f Mon Sep 17 00:00:00 2001 From: Billy Zha Date: Thu, 4 Jul 2024 05:15:39 +0000 Subject: [PATCH 1/2] build(ci): enable dependabot Signed-off-by: Billy Zha --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..a37c4f9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,24 @@ +# Copyright The ORAS Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +version: 2 + +updates: + - package-ecosystem: "github-actions" + # Workflow files stored in the + # default location of `.github/workflows` + directory: "/" + schedule: + interval: "daily" + labels: + - "dependencies" From 061c6654e111f7e79fbb98a5b1ec5c859f2b0837 Mon Sep 17 00:00:00 2001 From: Billy Zha Date: Thu, 4 Jul 2024 05:20:48 +0000 Subject: [PATCH 2/2] add npm in Signed-off-by: Billy Zha --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a37c4f9..b91b485 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -22,3 +22,9 @@ updates: interval: "daily" labels: - "dependencies" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + labels: + - "dependencies"