From 7f87905cad461d2285b71dd203b5bb2be4f42527 Mon Sep 17 00:00:00 2001 From: Burak Ince Date: Sun, 1 Dec 2024 18:48:43 +0100 Subject: [PATCH] Add group for github actions update pull requests and fix dockerfile entrypoint warning --- .github/dependabot.yml | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2d8d88b..fa05ad2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,10 @@ updates: interval: "daily" reviewers: - "burakince" + groups: + actions-deps: + patterns: + - "*" - package-ecosystem: "docker" directory: "/" diff --git a/Dockerfile b/Dockerfile index 6121e48..c29a827 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,4 @@ RUN apk -Uuv add curl ca-certificates coreutils jq bash COPY run.sh /bin/ -ENTRYPOINT /bin/run.sh +ENTRYPOINT ["/bin/run.sh"]