From 8f87d16bb6f500a4dcd00ef187dbe55db4b6a7c6 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 21 Oct 2024 06:43:13 +0300 Subject: [PATCH] Add regexManagers to Renovate config 2 --- .github/renovate.json | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index e8df838..ca427fa 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,7 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ], "regexManagers": [ { diff --git a/Dockerfile b/Dockerfile index 2219bf2..fba022d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG MAILPIT_VERSION=1.20.0 +ARG MAILPIT_VERSION=v1.20.0 # # Mailpit binary @@ -8,7 +8,7 @@ FROM golang:alpine AS mailpit-builder ARG MAILPIT_VERSION WORKDIR /app -ADD https://github.com/axllent/mailpit/archive/refs/tags/v${MAILPIT_VERSION}.tar.gz . +ADD https://github.com/axllent/mailpit/archive/refs/tags/${MAILPIT_VERSION}.tar.gz . RUN apk add --no-cache git npm RUN tar --strip-components=1 -zxf v${MAILPIT_VERSION}.tar.gz -C .