From d7cbade64e60a7510a22f2814a01447189102404 Mon Sep 17 00:00:00 2001 From: renovate Date: Tue, 3 Oct 2023 14:59:12 +0000 Subject: [PATCH] chore(deps): update node.js to v20.8 (#3756) Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/3756 Co-authored-by: renovate Co-committed-by: renovate --- .drone.yml | 16 ++++++++-------- Dockerfile | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.drone.yml b/.drone.yml index 04c117520..461bc5829 100644 --- a/.drone.yml +++ b/.drone.yml @@ -42,7 +42,7 @@ steps: # - .cache - name: dependencies - image: node:20.7-alpine + image: node:20.8-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -55,7 +55,7 @@ steps: # - restore-cache - name: lint - image: node:20.7-alpine + image: node:20.8-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -66,7 +66,7 @@ steps: - dependencies - name: build-prod - image: node:20.7-alpine + image: node:20.8-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -77,7 +77,7 @@ steps: - dependencies - name: test-unit - image: node:20.7-alpine + image: node:20.8-alpine pull: always commands: - corepack enable && pnpm config set store-dir .cache/pnpm @@ -87,7 +87,7 @@ steps: - name: typecheck failure: ignore - image: node:20.7-alpine + image: node:20.8-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -202,7 +202,7 @@ steps: # - .cache - name: build - image: node:20.7-alpine + image: node:20.8-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -285,7 +285,7 @@ steps: # - .cache - name: build - image: node:20.7-alpine + image: node:20.8-alpine pull: always environment: PNPM_CACHE_FOLDER: .cache/pnpm @@ -532,6 +532,6 @@ steps: src/i18n/lang/en.json: en.json --- kind: signature -hmac: 53db9cca5f819e82969d6161c5e921d9988193f60bceacdf1a677dfea71ce6f3 +hmac: 3678445f9053754ee4aae3e8888f8275e592711b84f0a1f013da117c9c1f44ce ... diff --git a/Dockerfile b/Dockerfile index 84c684507..0bfcd9f85 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # │─││ │││ │ │ # ┘─┘┘─┘┘┘─┘┘─┘ -FROM --platform=$BUILDPLATFORM node:20.7-alpine AS builder +FROM --platform=$BUILDPLATFORM node:20.8-alpine AS builder WORKDIR /build