Skip to content

Commit 8d760e5

Browse files
Update all dependencies
1 parent 54f9af3 commit 8d760e5

File tree

6 files changed

+1863
-1348
lines changed

6 files changed

+1863
-1348
lines changed

.github/docker/nodejs-example/Dockerfile

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

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

.github/docker/unit-test/Dockerfile

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

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

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
timeout-minutes: 6 # Usually this will be finish under 6 minutes
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: ⚙ Setup Node.js
23-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v4
2424
with:
2525
node-version: 16
2626
registry-url: https://registry.npmjs.org/
2727

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

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
timeout-minutes: 6 # Usually this will be finish under 6 minutes
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: ⚙ Setup Node.js
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: 16
2727
registry-url: https://registry.npmjs.org/
2828

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

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@
1616
"build-prod": "blackprint build production"
1717
},
1818
"dependencies": {
19-
"@polkadot/api": "^10.5.1",
20-
"@polkadot/keyring": "^12.1.2",
21-
"@polkadot/types": "^10.5.1",
22-
"@polkadot/util": "^12.1.2",
23-
"@polkadot/util-crypto": "^12.1.2"
19+
"@polkadot/api": "^12.0.0",
20+
"@polkadot/keyring": "^13.0.0",
21+
"@polkadot/types": "^12.0.0",
22+
"@polkadot/util": "^13.0.0",
23+
"@polkadot/util-crypto": "^13.0.0"
2424
},
2525
"devDependencies": {
26-
"@blackprint/cli-tools": "0.3.29",
26+
"@blackprint/cli-tools": "0.3.30",
2727
"@blackprint/engine": "0.9.2",
28-
"@blackprint/sketch": "0.9.0",
29-
"@polkadot/extension-dapp": "^0.46.2",
30-
"@polkadot/extension-inject": "^0.46.2",
28+
"@blackprint/sketch": "0.9.1",
29+
"@polkadot/extension-dapp": "^0.50.0",
30+
"@polkadot/extension-inject": "^0.50.0",
3131
"dotenv": "^16.0.3",
32-
"eslint": "^8.39.0",
32+
"eslint": "^9.0.0",
3333
"jest": "^29.5.0",
3434
"jest-environment-jsdom": "^29.5.0",
3535
"jest-environment-node": "^29.5.0",

0 commit comments

Comments
 (0)