Skip to content

Commit d9ec25e

Browse files
Update all dependencies
1 parent 773788f commit d9ec25e

File tree

6 files changed

+1366
-926
lines changed

6 files changed

+1366
-926
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
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",
26+
"@blackprint/cli-tools": "0.3.30",
27+
"@blackprint/engine": "0.9.2",
28+
"@blackprint/sketch": "0.9.1",
2929
"@polkadot/extension-dapp": "^0.46.2",
3030
"@polkadot/extension-inject": "^0.46.2",
3131
"dotenv": "^16.0.3",

0 commit comments

Comments
 (0)