Skip to content

Commit b58fdc5

Browse files
Update all dependencies
1 parent 773788f commit b58fdc5

File tree

6 files changed

+2042
-1213
lines changed

6 files changed

+2042
-1213
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
- uses: actions/checkout@v3
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
- uses: actions/checkout@v3
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

+8-8
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",
19+
"@polkadot/api": "^11.0.0",
2020
"@polkadot/keyring": "^12.1.2",
21-
"@polkadot/types": "^10.5.1",
21+
"@polkadot/types": "^11.0.0",
2222
"@polkadot/util": "^12.1.2",
2323
"@polkadot/util-crypto": "^12.1.2"
2424
},
2525
"devDependencies": {
26-
"@blackprint/cli-tools": "0.3.29",
27-
"@blackprint/engine": "0.9.0",
28-
"@blackprint/sketch": "0.9.0",
29-
"@polkadot/extension-dapp": "^0.46.2",
30-
"@polkadot/extension-inject": "^0.46.2",
26+
"@blackprint/cli-tools": "0.3.30",
27+
"@blackprint/engine": "0.9.2",
28+
"@blackprint/sketch": "0.9.1",
29+
"@polkadot/extension-dapp": "^0.47.0",
30+
"@polkadot/extension-inject": "^0.47.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)