From 3cfb4fd96071ed0bdda02b4007777ce4940f6179 Mon Sep 17 00:00:00 2001 From: jfriedli Date: Mon, 24 Jan 2022 20:15:46 +0000 Subject: [PATCH 1/2] RenovateBot: Update renovate/renovate Docker tag to v31 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 80db9a4..30708fc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -66,7 +66,7 @@ renovate: variables: RENOVATE_TOKEN: $GITLAB_API_TOKEN image: - name: renovate/renovate:19 + name: renovate/renovate:31 entrypoint: [''] script: - node /usr/src/app/dist/renovate.js --platform gitlab --endpoint ${CI_API_V4_URL} --token ${GITLAB_API_TOKEN} ${CI_PROJECT_PATH} \ No newline at end of file From 667197d88b6ca83c471645b4f7d45ea3965ea4c3 Mon Sep 17 00:00:00 2001 From: jfriedli Date: Mon, 24 Jan 2022 20:26:13 +0000 Subject: [PATCH 2/2] RenovateBot: Update node Docker tag to v17 --- Dockerfile.production | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.production b/Dockerfile.production index 0855297..3003497 100644 --- a/Dockerfile.production +++ b/Dockerfile.production @@ -1,5 +1,5 @@ # Build the needed css files in an intermediate container -FROM node:14-buster AS static_web_assets_build +FROM node:17-buster AS static_web_assets_build WORKDIR /var/www/mat2-web COPY . /var/www/mat2-web RUN npm install \