Skip to content

Commit

Permalink
ci: node version 20
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed Dec 18, 2023
1 parent 1562a1b commit 0f5b396
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
node_version:
description: Node.js version
required: false
default: '19.5.0'
default: '20.8.0'

runs:
using: composite
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup
uses: ./.github/actions/setup
with:
node_version: 19.5.0
node_version: 20.8.0
- name: Commit lint
shell: bash
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup
uses: ./.github/actions/setup
with:
node_version: 19.5.0
node_version: 20.8.0
- name: Release
run: ./scripts/release-go.sh
- name: Commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup
uses: ./.github/actions/setup
with:
node_version: 19.5.0
node_version: 20.8.0
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion apps/assets/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/crons/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/explorer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/hostd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/renterd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/walletd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/website/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as runner
FROM node:20-alpine as runner

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=19.5.0"
"node": ">=20.8.0"
},
"scripts": {
"start": "nx serve",
Expand Down

0 comments on commit 0f5b396

Please sign in to comment.