From f7da5977840652b7b546c98072ca724089c5821a Mon Sep 17 00:00:00 2001 From: f Date: Wed, 19 Jun 2024 10:14:59 -0300 Subject: [PATCH 1/3] feat: upgrade --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 7bf8d52..71dcde8 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -18,7 +18,7 @@ steps: event: "push" matrix: ALPINE_VERSION: - - "3.20.0" - - "3.19.1" - - "3.18.6" - - "3.17.7" + - "3.20.1" + - "3.19.2" + - "3.18.7" + - "3.17.8" From c0e6b8150b63d19ac7dada60cb54d52773c4e9c1 Mon Sep 17 00:00:00 2001 From: f Date: Wed, 19 Jun 2024 10:15:44 -0300 Subject: [PATCH 2/3] refactor: use matrix so it's easier to merge downstream containers --- .woodpecker.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 71dcde8..c4defc6 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -17,8 +17,8 @@ steps: branch: "antifascista" event: "push" matrix: - ALPINE_VERSION: - - "3.20.1" - - "3.19.2" - - "3.18.7" - - "3.17.8" + include: + - ALPINE_VERSION: "3.20.1" + - ALPINE_VERSION: "3.19.2" + - ALPINE_VERSION: "3.18.7" + - ALPINE_VERSION: "3.17.8" From 41354bbc951c962e292e7c0dfeeb50b00adfe1fb Mon Sep 17 00:00:00 2001 From: f Date: Fri, 21 Jun 2024 12:21:51 -0300 Subject: [PATCH 3/3] fix: deprecate MAINTAINER --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0c93e2e..5d62bae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ ARG ALPINE_VERSION=3.18.3 ARG BASE_IMAGE=gitea.nulo.in/sutty/monit FROM ${BASE_IMAGE}:${ALPINE_VERSION} -MAINTAINER "f " +LABEL org.opencontainers.image.authors="f@sutty.nl"