Skip to content

Commit

Permalink
Bump to node 20.13 (#5057)
Browse files Browse the repository at this point in the history
* move to node 18.20

* move to node 20.13

* Bump to node 20.13

* docs bump
  • Loading branch information
spolu authored May 15, 2024
1 parent eca35c5 commit 8659350
Show file tree
Hide file tree
Showing 23 changed files with 325 additions and 686 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-lint-connectors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./connectors/package-lock.json
- working-directory: types
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-lint-front.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./front/package-lock.json
- working-directory: types
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-lint-sparkle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./sparkle/package-lock.json
- working-directory: sparkle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-lint-types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./types/package-lock.json
- working-directory: types
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./docs/package-lock.json
- working-directory: docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-sparkle-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./sparkle/package-lock.json
registry-url: "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-sparkle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
node-version: 20.13.0
cache: "npm"
cache-dependency-path: ./sparkle/package-lock.json
registry-url: "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion connectors/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.15.0
20.13.0
4 changes: 2 additions & 2 deletions connectors/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# start installing poppler tools for pdf text extraction
FROM node:18.15.0 as build
FROM node:20.13.0 as build

RUN apt-get update && apt-get install -y vim redis-tools postgresql-client htop

Expand All @@ -10,7 +10,7 @@ RUN chmod +x ./install_poppler_tools.sh
RUN ./install_poppler_tools.sh
# end installing poppler tools

FROM node:18.15.0 as connectors
FROM node:20.13.0 as connectors

ENV LD_LIBRARY_PATH=/usr/local/lib
COPY --from=build /tmp/poppler-23.07.0/build/utils/pdftotext /usr/bin/pdftotext
Expand Down
2 changes: 1 addition & 1 deletion connectors/admin/dev.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

NODE_ENV=development npx tsx ./src/start.ts -p 3002
NODE_ENV=development npx tsx --trace-warnings ./src/start.ts -p 3002
Loading

0 comments on commit 8659350

Please sign in to comment.