Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/docker/nodejs-example/Dockerfile
@@ -1,4 +1,4 @@
FROM node:18-buster-slim
FROM node:20-buster-slim

# Prefer node package manager that more efficient
RUN npm i -g pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/docker/unit-test/Dockerfile
@@ -1,4 +1,4 @@
FROM node:18-buster-slim
FROM node:20-buster-slim

# Prefer node package manager that more efficient
RUN npm i -g pnpm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Expand Up @@ -17,16 +17,16 @@ jobs:
timeout-minutes: 6 # Usually this will be finish under 6 minutes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: ⚙ Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/

- name: 🔃 Setup PNPM modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -18,16 +18,16 @@ jobs:
timeout-minutes: 6 # Usually this will be finish under 6 minutes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: ⚙ Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/

- name: 🔃 Setup PNPM modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -16,20 +16,20 @@
"build-prod": "blackprint build production"
},
"dependencies": {
"@polkadot/api": "^10.5.1",
"@polkadot/api": "^11.0.0",
"@polkadot/keyring": "^12.1.2",
"@polkadot/types": "^10.5.1",
"@polkadot/types": "^11.0.0",
"@polkadot/util": "^12.1.2",
"@polkadot/util-crypto": "^12.1.2"
},
"devDependencies": {
"@blackprint/cli-tools": "0.3.29",
"@blackprint/engine": "0.9.0",
"@blackprint/sketch": "0.9.0",
"@polkadot/extension-dapp": "^0.46.2",
"@polkadot/extension-inject": "^0.46.2",
"@blackprint/cli-tools": "0.3.30",
"@blackprint/engine": "0.9.2",
"@blackprint/sketch": "0.9.1",
"@polkadot/extension-dapp": "^0.47.0",
"@polkadot/extension-inject": "^0.47.0",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint": "^9.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0",
Expand Down