Skip to content

Commit 679f3a0

Browse files
committed
Update all dependencies
1 parent 1de6da8 commit 679f3a0

File tree

5 files changed

+589
-1028
lines changed

5 files changed

+589
-1028
lines changed

.github/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-buster-slim
1+
FROM node:18-buster-slim
22

33
# Prefer node package manager that more efficient
44
RUN npm i -g pnpm

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
registry-url: https://registry.npmjs.org/
2626

2727
- name: 🔃 Setup PNPM modules
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: ~/.pnpm-store
3131
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
@@ -52,7 +52,7 @@ jobs:
5252
run: npm test
5353

5454
- name: 🚀 Deploy
55-
uses: JamesIves/github-pages-deploy-action@v4.2.5
55+
uses: JamesIves/github-pages-deploy-action@v4.3.3
5656
if: github.event_name != 'pull_request' # Don't deploy, it will be dangerous if someone submit dangerous pull request
5757
with:
5858
branch: dist # The branch the action should deploy to.

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
registry-url: https://registry.npmjs.org/
2727

2828
- name: 🔃 Setup PNPM modules
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: ~/.pnpm-store
3232
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"build-prod": "blackprint build production"
1515
},
1616
"dependencies": {
17-
"@polkadot/api": "7.9.1",
18-
"@polkadot/keyring": "8.4.1",
19-
"@polkadot/types": "7.9.1",
20-
"@polkadot/util": "8.4.1",
21-
"@polkadot/util-crypto": "8.4.1"
17+
"@polkadot/api": "8.2.1",
18+
"@polkadot/keyring": "9.0.1",
19+
"@polkadot/types": "8.2.1",
20+
"@polkadot/util": "9.0.1",
21+
"@polkadot/util-crypto": "9.0.1"
2222
},
2323
"devDependencies": {
2424
"@blackprint/cli-tools": "0.3.18",
@@ -27,8 +27,8 @@
2727
"@polkadot/extension-dapp": "^0.43.0",
2828
"@polkadot/extension-inject": "^0.43.0",
2929
"dotenv": "^16.0.0",
30-
"jest": "^27.5.1",
31-
"node-fetch": "^2.6.7",
30+
"jest": "^28.0.0",
31+
"node-fetch": "^3.0.0",
3232
"vinyl": "^2.2.1",
3333
"scarletsframe": "0.35.15"
3434
},

0 commit comments

Comments
 (0)