Skip to content

Commit

Permalink
chore: Upgrade NodeJS to 16.x (pypi#12288)
Browse files Browse the repository at this point in the history
Node 14 ends support in April 2023.
Node 16 will remain supported until September 2023.

Upgrading to Node 16 allows removal of the `node-webcrypto-ossl`
dependency used in tests.

`package-lock.json` updated for the new lockfile format with npm 8 and
removes some no longer needed dependencies.

Signed-off-by: Mike Fiedler <miketheman@gmail.com>

Signed-off-by: Mike Fiedler <miketheman@gmail.com>
  • Loading branch information
miketheman committed Oct 10, 2022
1 parent e988e8a commit 941078f
Show file tree
Hide file tree
Showing 4 changed files with 30,701 additions and 225 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- uses: actions/setup-node@v3
if: ${{ matrix.needs-node }}
with:
node-version: 14.19.1
node-version: 16.17.1
cache: 'npm'
- name: Install Node dependencies
if: ${{ matrix.needs-node }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# our static assets with. It is important that the steps in this remain the
# same as the steps in Dockerfile.static, EXCEPT this may include additional
# steps appended onto the end.
FROM node:14.19.1-bullseye as static
FROM node:16.17.1-bullseye as static

WORKDIR /opt/warehouse/src/

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.static
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.19.1-bullseye as static
FROM node:16.17.1-bullseye as static

WORKDIR /opt/warehouse/src/

Expand Down
Loading

0 comments on commit 941078f

Please sign in to comment.