Skip to content

Commit

Permalink
Update dependencies (#369)
Browse files Browse the repository at this point in the history
* Update dependencies (resolved 10 vulns)

Before update:
22 vulnerabilities (5 moderate, 13 high, 4 critical)

After update:
12 vulnerabilities (1 moderate, 7 high, 4 critical)

* Update other dependencies up to non-breaking versions

* Dockerfile: Update to Node 16

also update Node version in GitHub workflow.
  • Loading branch information
metalefty authored Aug 31, 2023
1 parent c26baf4 commit e70e53a
Show file tree
Hide file tree
Showing 5 changed files with 11,541 additions and 5,973 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
- name: Install prettier
run: npm i prettier
- name: Get changed files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 12
node-version: 16
- name: Install dependecies
run: npm i
- name: Run build
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM almalinux:8

RUN curl https://nodejs.org/dist/v12.22.1/node-v12.22.1-linux-x64.tar.gz -o /root/node.tar.gz && \
RUN curl https://nodejs.org/dist/v16.20.1/node-v16.20.1-linux-x64.tar.gz -o /root/node.tar.gz && \
cd /usr/local && tar --strip-components 1 -xzf /root/node.tar.gz
RUN npm install -g -y @quasar/cli
WORKDIR /code
Expand Down
Loading

0 comments on commit e70e53a

Please sign in to comment.