Skip to content

Commit 2065239

Browse files
Update all dependencies
1 parent 54f9af3 commit 2065239

File tree

6 files changed

+3114
-3193
lines changed

6 files changed

+3114
-3193
lines changed

.github/docker/nodejs-example/Dockerfile

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 5 additions & 5 deletions
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@v5
2121

2222
- name: ⚙ Setup Node.js
23-
uses: actions/setup-node@v3
23+
uses: actions/setup-node@v5
2424
with:
25-
node-version: 16
25+
node-version: 22
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') }}
@@ -35,7 +35,7 @@ jobs:
3535
3636
- uses: pnpm/action-setup@v2
3737
with:
38-
version: 6.0.2
38+
version: 10.18.0
3939
run_install: true
4040

4141
- name: 🛠 Compiling Blackprint Modules

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
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@v5
2222

2323
- name: ⚙ Setup Node.js
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v5
2525
with:
26-
node-version: 16
26+
node-version: 22
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') }}
@@ -36,7 +36,7 @@ jobs:
3636
3737
- uses: pnpm/action-setup@v2
3838
with:
39-
version: 6.0.2
39+
version: 10.18.0
4040
run_install: true
4141

4242
- name: 🛠 Compiling Blackprint Modules

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@
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": "^16.0.0",
20+
"@polkadot/keyring": "^13.0.0",
21+
"@polkadot/types": "^16.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.31",
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",
31-
"dotenv": "^16.0.3",
32-
"eslint": "^8.39.0",
33-
"jest": "^29.5.0",
34-
"jest-environment-jsdom": "^29.5.0",
35-
"jest-environment-node": "^29.5.0",
28+
"@blackprint/sketch": "0.9.1",
29+
"@polkadot/extension-dapp": "^0.62.0",
30+
"@polkadot/extension-inject": "^0.62.0",
31+
"dotenv": "^17.0.0",
32+
"eslint": "^9.0.0",
33+
"jest": "^30.0.0",
34+
"jest-environment-jsdom": "^30.0.0",
35+
"jest-environment-node": "^30.0.0",
3636
"node-fetch": "^2.6.9",
3737
"scarletsframe": "^0.35.26",
3838
"vinyl": "^3.0.0"

0 commit comments

Comments
 (0)