Skip to content

Commit e388109

Browse files
committed
Update all dependencies
1 parent 11a27d8 commit e388109

File tree

5 files changed

+209
-180
lines changed

5 files changed

+209
-180
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:17-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.0
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

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@
1515
},
1616
"dependencies": {
1717
"@polkadot/api": "^7.9.1",
18-
"@polkadot/keyring": "^8.4.1",
18+
"@polkadot/keyring": "^9.0.0",
1919
"@polkadot/types": "^7.9.1",
20-
"@polkadot/util": "^8.4.1",
21-
"@polkadot/util-crypto": "^8.4.1"
20+
"@polkadot/util": "^9.0.0",
21+
"@polkadot/util-crypto": "^9.0.0"
2222
},
2323
"devDependencies": {
2424
"@blackprint/cli-tools": "0.3.18",
2525
"@blackprint/engine": "0.6.4",
26-
"@blackprint/sketch": "0.6.7",
26+
"@blackprint/sketch": "0.6.8",
2727
"@polkadot/extension-dapp": "^0.42.9",
2828
"@polkadot/extension-inject": "^0.42.9",
2929
"dotenv": "^16.0.0",
3030
"jest": "^27.4.7",
31-
"node-fetch": "^2.6.7",
32-
"scarletsframe": "0.35.9"
31+
"node-fetch": "^3.0.0",
32+
"scarletsframe": "0.35.15"
3333
},
3434
"keywords": [
3535
"blackprint",

0 commit comments

Comments
 (0)