Skip to content

Commit

Permalink
use mvnw to execute quarkus:update
Browse files Browse the repository at this point in the history
  • Loading branch information
hwirnsberger committed Jun 14, 2024
1 parent 8b03812 commit fe7658c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ghcr.io/renovatebot/renovate:latest
USER root
RUN apt update
RUN apt install -y openjdk-17-jre maven
RUN apt install -y openjdk-17-jre
USER ubuntu
7 changes: 4 additions & 3 deletions renovate-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ module.exports = {
],
prHourlyLimit: 0,
postUpgradeTasks: {
commands: ["ls -l"],
fileFilters: ["**/*.txt"],
commands: ["./mvnw quarkus:update"],
fileFilters: ["**/*.pom", "**/*.java"],
executionMode: "branch"
},
allowedPostUpgradeCommands: ["touch", "ls"]
allowedPostUpgradeCommands: ["touch", "ls", "^./mvnw quarkus:update$"],
recreateWhen: "always"
}

0 comments on commit fe7658c

Please sign in to comment.