From 0f142a6e8734c28a122c34f84204083c10208c46 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Apr 2023 17:42:26 +0000 Subject: [PATCH] Update node Docker tag to v19 --- .github/workflows/main.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e8bf654..b6a345f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,7 +6,7 @@ on: jobs: build: runs-on: ubuntu-latest - container: node:18.12.1-alpine3.15 + container: node:19.2.0-alpine3.15 services: mongo: image: mongo diff --git a/Dockerfile b/Dockerfile index 2e1dd5e..1d7f5bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.12.1-alpine3.15 +FROM node:19.2.0-alpine3.15 LABEL maintainer "Jan Sauer (https://jansauer.de/)"