Skip to content

Commit 189b359

Browse files
authored
Update landing page and registry viewer to use Node.js 18 (latest LTS) (#97)
This merges pull request #97 from rm3l/1117-update-landing-page-and-registry-viewer-to-use-node.js-18
2 parents 0aa1a84 + 57e39de commit 189b359

File tree

10 files changed

+147560
-36
lines changed

10 files changed

+147560
-36
lines changed

.devfile.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#
1+
#
22
# Copyright Red Hat
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -28,7 +28,7 @@ metadata:
2828
- Registry
2929
- Documentation
3030
- devfile.io
31-
version: 1.0.0
31+
version: 1.1.0
3232
components:
3333
- name: image-builder
3434
image:
@@ -49,7 +49,7 @@ components:
4949
seccompProfile:
5050
type: "RuntimeDefault"
5151
container:
52-
image: node:16-alpine
52+
image: node:18-alpine
5353
command: ['tail', '-f', '/dev/null']
5454
mountSources: true
5555
memoryLimit: "{{memoryLimit}}"

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ apps/landing-page/pages/docs
33
**/next-env.d.ts
44
**/dist
55
**/*/__ENV.js
6+
.yarn/

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939

40+
- uses: actions/setup-node@v3
41+
with:
42+
node-version-file: 'package.json'
43+
4044
- name: Set SHA
4145
uses: nrwl/nx-set-shas@v2
4246

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
**/dist
1111
**/*/__ENV.js
1212
libs/core/src/types/devfile-spec.ts
13+
.yarn/

0 commit comments

Comments
 (0)