Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/api-control.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: ⚙️ Setup node
uses: actions/setup-node@v3
with:
node-version: '18.18'
node-version: '18.20'
cache: 'yarn'

- name: 📦 Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: ⚙️ Setup node
uses: actions/setup-node@v3
with:
node-version: '18.18'
node-version: '18.20'
cache: 'yarn'

- name: 📦 Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: ⚙️ Setup node
uses: actions/setup-node@v3
with:
node-version: '18.18'
node-version: '18.20'
cache: 'yarn'

- name: 📦 Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.20.6
18.20.8
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base ----
FROM node:18.20.6-alpine AS base
FROM node:18.20.8-alpine AS base

# ------------------
# package.json cache
Expand Down Expand Up @@ -52,7 +52,7 @@ RUN true \
# ---- Final ----
# Resulting new, minimal image
# This image must have the minimum amount of layers
FROM node:18.20.6-alpine as final
FROM node:18.20.8-alpine as final

ENV NODE_ENV production

Expand Down
Loading