Skip to content

Commit 17ee55e

Browse files
fix(deps): update all
1 parent b2b0e56 commit 17ee55e

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

.github/workflows/cut-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
persist-credentials: false

.github/workflows/publish-docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout the repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- uses: pnpm/action-setup@v4
18-
- uses: actions/setup-node@v5
18+
- uses: actions/setup-node@v6
1919
with:
20-
node-version: 22
20+
node-version: 24
2121
cache: 'pnpm'
2222
- name: Install
2323
run: pnpm install

.github/workflows/publish-sdk.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
persist-credentials: false
1818
ref: ${{ github.event.inputs.commit }}
1919
- uses: pnpm/action-setup@v4
20-
- uses: actions/setup-node@v5
20+
- uses: actions/setup-node@v6
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
cache: 'pnpm'
2424
registry-url: 'https://registry.npmjs.org'
2525
- name: Set NPM variables

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
persist-credentials: false
1717
ref: ${{ github.event.inputs.commit }}
1818
- uses: pnpm/action-setup@v4
19-
- uses: actions/setup-node@v5
19+
- uses: actions/setup-node@v6
2020
with:
21-
node-version: 22
21+
node-version: 24
2222
cache: 'pnpm'
2323
registry-url: 'https://registry.npmjs.org'
2424
- name: Install

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
"ethers": "npm:@sentio/[email protected]"
1212
},
1313
"devDependencies": {
14-
"@eslint/compat": "^1.3.2",
14+
"@eslint/compat": "^2.0.0",
1515
"@eslint/eslintrc": "^3.3.1",
1616
"@eslint/js": "^9.35.0",
1717
"@ls-lint/ls-lint": "^2.3.0",
1818
"@types/chai": "^5.2.2",
19-
"@types/node": "^22.18.0",
19+
"@types/node": "^24.0.0",
2020
"chai": "^6.0.0",
2121
"conventional-changelog-conventionalcommits": "^9.0.0",
2222
"eslint": "^9.35.0",
2323
"eslint-config-prettier": "^10.1.8",
2424
"eslint-import-resolver-typescript": "^4.0.0",
2525
"eslint-plugin-import-x": "^4.16.1",
2626
"eslint-plugin-unused-imports": "^4.2.0",
27-
"glob": "^11.0.0",
27+
"glob": "^13.0.0",
2828
"json": "^11.0.0",
2929
"lint-staged": "^16.0.0",
3030
"prettier": "^3.2.5",
@@ -39,7 +39,7 @@
3939
"engines": {
4040
"node": ">=22"
4141
},
42-
"packageManager": "pnpm@10.17.1",
42+
"packageManager": "pnpm@10.25.0",
4343
"pnpm": {
4444
"patchedDependencies": {
4545
"@coral-xyz/[email protected]": "patches/@[email protected]"

packages/cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
"types": "module",
2525
"dependencies": {
2626
"@aptos-labs/ts-sdk": "~5.1.0",
27-
"@iota/iota-sdk": "~1.6.1",
28-
"@mysten/sui": "~1.38.0",
27+
"@iota/iota-sdk": "~1.9.0",
28+
"@mysten/sui": "~1.45.0",
2929
"@sentio/chain": "~3.4.18",
3030
"@sentio/graph-cli": "^0.97.0",
31-
"@types/node": "^22.8.6",
31+
"@types/node": "^24.0.0",
3232
"chalk": "^5.3.0",
3333
"commander": "^14.0.0",
3434
"dotenv": "^17.0.0",
@@ -38,10 +38,10 @@
3838
"jszip": "^3.10.1",
3939
"latest-version": "^9.0.0",
4040
"node-fetch": "^3.3.2",
41-
"open": "^10.0.3",
41+
"open": "^11.0.0",
4242
"package-manager-manager": "^0.2.0",
4343
"solc": "^0.8.25",
44-
"starknet": "^6.11.0",
44+
"starknet": "^8.0.0",
4545
"tsup": "npm:@sentio/tsup@^8.3.5-rc.1",
4646
"tsx": "^4.15.2",
4747
"yaml": "^2.3.4"

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"nice-grpc-error-details": "^0.2.4",
4444
"nice-grpc-opentelemetry": "^0.1.18",
4545
"nice-grpc-prometheus": "^0.2.2",
46-
"piscina": "5.1.3",
46+
"piscina": "5.1.4",
4747
"protobufjs": "^7.5.4",
4848
"rxjs": "^7.8.1",
4949
"utility-types": "^3.11.0",

packages/sdk/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@
8686
},
8787
"dependencies": {
8888
"@aptos-labs/ts-sdk": "~5.1.0",
89-
"@coral-xyz/anchor": "^0.31.1",
90-
"@coral-xyz/borsh": "^0.31.1",
91-
"@iota/iota-sdk": "~1.6.1",
92-
"@mysten/sui": "~1.38.0",
89+
"@coral-xyz/anchor": "^0.32.0",
90+
"@coral-xyz/borsh": "^0.32.0",
91+
"@iota/iota-sdk": "~1.9.0",
92+
"@mysten/sui": "~1.45.0",
9393
"@prettier/sync": "^0.6.0",
9494
"@sentio/abi-wan-kanabi": "2.2.2-1",
9595
"@sentio/api": "1.0.2",
@@ -123,7 +123,7 @@
123123
"radash": "^12.0.0",
124124
"reflect-metadata": "^0.2.2",
125125
"rxjs": "^7.8.1",
126-
"starknet": "^6.11.0",
126+
"starknet": "^8.0.0",
127127
"typechain": "^8.3.2",
128128
"utility-types": "^3.11.0",
129129
"yaml": "^2.3.4"

0 commit comments

Comments
 (0)