Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to nodejs 16 and packaging 24.1 #9384

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: hashicorp/setup-terraform@v1
- name: Install dependencies
run: |
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
python-version: 3.10.14
- name: Build UI assets
run: |
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV NODE_OPTIONS="--max-old-space-size=20000"
ENV SETUPTOOLS_USE_DISTUTILS=stdlib

# Install OS dependencies
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN apt clean
RUN apt update
RUN apt install -y \
Expand Down
2 changes: 1 addition & 1 deletion docs/gitbook/quick-start/local-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Ubuntu disco/19.04+, Debian buster/10+
# Additional dependencies
sudo apt-get install build-essential libxml2-dev libxmlsec1 libxmlsec1-dev libxmlsec1-openssl musl-dev libcurl4-nss-dev python3-dev pkg-config -y
# Nodejs/Yarn (Frontend dependencies)
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash
sudo apt-get install -y nodejs
sudo npm install yarn -g
```
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ mkdocs-material==8.3.9
# via -r requirements-docs.in
mkdocs-material-extensions==1.0.3
# via mkdocs-material
packaging==21.3
packaging==24.1
# via
# -c requirements-test.txt
# -c requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ orderedmultidict==1.0.1
# -c requirements.txt
# -r requirements.txt
# furl
packaging==21.3
packaging==24.1
# via
# -c requirements.txt
# -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ ordered-set==4.1.0
# via deepdiff
orderedmultidict==1.0.1
# via furl
packaging==21.3
packaging==24.1
# via
# marshmallow
# redis
Expand Down