Skip to content

Commit

Permalink
feat: enable Dependabot to update deps and update base image tag (#404)
Browse files Browse the repository at this point in the history
* Enable Dependabot and fix base image tag

Dependabot will now create pull requests when new Docker images, dependencies or GitHub actions become available. By fixing the base image tag, we always exactly know what base image we are using and Dependabot will propose updates.
  • Loading branch information
Bert-R committed Aug 16, 2022
1 parent ef97d8d commit dc9395e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/src/main/docker/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:11
FROM eclipse-temurin:11.0.16_8-jdk

ADD kafdrop.sh /
ADD kafdrop*tar.gz /
Expand Down

0 comments on commit dc9395e

Please sign in to comment.