Skip to content

Commit ca73668

Browse files
fix(deps): update all non-major dependencies
1 parent f40389e commit ca73668

37 files changed

Lines changed: 4862 additions & 12387 deletions

File tree

.github/workflows/build-and-test-on-pr.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1010
with:
1111
fetch-depth: 0
12-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
12+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
1313
with:
1414
version: 10
1515
- name: 'Setup Node.js with pnpm cache'
16-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
16+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
1717
with:
1818
node-version: 20
1919
cache: 'pnpm'
2020

2121
- run: pnpm install
2222
- run: pnpm build
2323
- name: 'Save build output'
24-
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
24+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2525
with:
2626
path: '${{ github.workspace }}'
2727
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
@@ -34,26 +34,26 @@ jobs:
3434
shard: [1, 2, 3, 4, 5]
3535
services:
3636
postgres:
37-
image: postgres:16.0
37+
image: postgres:16.13
3838
env:
3939
POSTGRES_USER: postgres
4040
POSTGRES_PASSWORD: test123
4141
ports:
4242
- 5432:5432
4343
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
4444
steps:
45-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
45+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
4646
with:
4747
version: 10
4848
- name: 'Restore build output'
49-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
49+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5050
with:
5151
path: '${{ github.workspace }}'
5252
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
5353
restore-keys: '${{ runner.os }}-build-${{ github.sha }}'
5454
fail-on-cache-miss: true
5555
- name: 'Setup Node.js with pnpm cache'
56-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
56+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
5757
with:
5858
node-version: 20
5959
cache: 'pnpm'
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
needs: [test-integration]
7979
steps:
80-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
80+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8181
with:
8282
fetch-depth: 0
8383
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
@@ -87,7 +87,7 @@ jobs:
8787
path: coverage
8888
- name: Merge Code Coverage
8989
run: npx nyc merge coverage/ coverage/coverage-final.json
90-
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
90+
- uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5.5.4
9191
with:
9292
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos but sometimes fails without :|
9393
fail_ci_if_error: true
@@ -96,18 +96,18 @@ jobs:
9696
needs: build
9797
runs-on: ubuntu-latest
9898
steps:
99-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
99+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
100100
with:
101101
version: 10
102102
- name: 'Restore build output'
103-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
103+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
104104
with:
105105
path: '${{ github.workspace }}'
106106
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
107107
restore-keys: '${{ runner.os }}-build-${{ github.sha }}'
108108
fail-on-cache-miss: true
109109
- name: 'Setup Node.js with pnpm cache'
110-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
110+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
111111
with:
112112
node-version: 20
113113
cache: 'pnpm'
@@ -120,18 +120,18 @@ jobs:
120120
needs: build
121121
runs-on: ubuntu-latest
122122
steps:
123-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
123+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
124124
with:
125125
version: 10
126126
- name: 'Restore build output'
127-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
127+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
128128
with:
129129
path: '${{ github.workspace }}'
130130
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
131131
restore-keys: '${{ runner.os }}-build-${{ github.sha }}'
132132
fail-on-cache-miss: true
133133
- name: 'Setup Node.js with pnpm cache'
134-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
134+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
135135
with:
136136
node-version: 20
137137
cache: 'pnpm'

.github/workflows/build-test-publish-on-push.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
with:
1818
fetch-depth: 0
1919
persist-credentials: false
20-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
20+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
2121
with:
2222
version: 10
2323
- name: 'Setup Node.js with pnpm cache'
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2525
with:
2626
node-version: 20
2727
cache: 'pnpm'
2828

2929
- run: pnpm install
3030
- run: pnpm build
3131
- name: 'Save build output'
32-
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
32+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3333
with:
3434
path: '${{ github.workspace }}'
3535
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
@@ -42,26 +42,26 @@ jobs:
4242
shard: [ 1, 2, 3, 4, 5 ]
4343
services:
4444
postgres:
45-
image: postgres:16.0
45+
image: postgres:16.13
4646
env:
4747
POSTGRES_USER: postgres
4848
POSTGRES_PASSWORD: test123
4949
ports:
5050
- 5432:5432
5151
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
5252
steps:
53-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
53+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
5454
with:
5555
version: 10
5656
- name: 'Restore build output'
57-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
57+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5858
with:
5959
path: '${{ github.workspace }}'
6060
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
6161
restore-keys: '${{ runner.os }}-build-${{ github.sha }}'
6262
fail-on-cache-miss: true
6363
- name: 'Setup Node.js with pnpm cache'
64-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
64+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
6565
with:
6666
node-version: 20
6767
cache: 'pnpm'
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-latest
8686
needs: [ test-integration ]
8787
steps:
88-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
88+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8989
with:
9090
fetch-depth: 0
9191
persist-credentials: false
@@ -96,7 +96,7 @@ jobs:
9696
path: coverage
9797
- name: Merge Code Coverage
9898
run: npx nyc merge coverage/ coverage/coverage-final.json
99-
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
99+
- uses: codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5.5.4
100100
with:
101101
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos but sometimes fails without :|
102102
fail_ci_if_error: false
@@ -105,18 +105,18 @@ jobs:
105105
needs: build
106106
runs-on: ubuntu-latest
107107
steps:
108-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
108+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
109109
with:
110110
version: 10
111111
- name: 'Restore build output'
112-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
112+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
113113
with:
114114
path: '${{ github.workspace }}'
115115
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
116116
restore-keys: '${{ runner.os }}-build-${{ github.sha }}'
117117
fail-on-cache-miss: true
118118
- name: 'Setup Node.js with pnpm cache'
119-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
119+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
120120
with:
121121
node-version: 20
122122
cache: 'pnpm'
@@ -129,18 +129,18 @@ jobs:
129129
needs: build
130130
runs-on: ubuntu-latest
131131
steps:
132-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
132+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
133133
with:
134134
version: 10
135135
- name: 'Restore build output'
136-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
136+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
137137
with:
138138
path: '${{ github.workspace }}'
139139
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
140140
restore-keys: '${{ runner.os }}-build-${{ github.sha }}'
141141
fail-on-cache-miss: true
142142
- name: 'Setup Node.js with pnpm cache'
143-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
143+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
144144
with:
145145
node-version: 20
146146
cache: 'pnpm'
@@ -164,21 +164,21 @@ jobs:
164164
GH_EMAIL: ${{secrets.GH_EMAIL}}
165165
runs-on: ubuntu-latest
166166
steps:
167-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
167+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
168168
with:
169169
fetch-depth: 0
170170
token: ${{secrets.GH_TOKEN}}
171-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
171+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
172172
with:
173173
version: 10
174174
- name: 'Setup Node.js with pnpm cache'
175-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
175+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
176176
with:
177177
node-version: 20
178178
cache: 'pnpm'
179179

180180
- name: 'Restore build output'
181-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
181+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
182182
with:
183183
path: '${{ github.workspace }}'
184184
key: '${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
37+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3838
with:
3939
persist-credentials: false
4040

@@ -73,6 +73,6 @@ jobs:
7373
# Upload the results to GitHub's code scanning dashboard (optional).
7474
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7575
- name: "Upload to code-scanning"
76-
uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
76+
uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
7777
with:
7878
sarif_file: results.sarif

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@
2828
},
2929
"devDependencies": {
3030
"@jest/globals": "29.7.0",
31-
"@metamask/eth-sig-util": "7.0.1",
31+
"@metamask/eth-sig-util": "7.0.3",
3232
"@microsoft/api-documenter": "7.26.5",
3333
"@microsoft/api-extractor": "7.49.1",
3434
"@microsoft/api-extractor-model": "7.30.2",
3535
"@microsoft/tsdoc": "0.15.0",
3636
"@noble/hashes": "1.7.1",
3737
"@stablelib/ed25519": "1.0.3",
3838
"@transmute/credentials-context": "0.7.0-unstable.82",
39-
"@types/express": "4.17.21",
39+
"@types/express": "4.17.25",
4040
"@types/fs-extra": "11.0.4",
41-
"@types/jest": "29.5.12",
41+
"@types/jest": "29.5.14",
4242
"@types/node": "20.17.4",
4343
"@types/uuid": "9.0.8",
44-
"caip": "1.1.0",
44+
"caip": "1.1.1",
4545
"credential-status": "3.0.4",
4646
"cross-env": "7.0.3",
4747
"did-jwt": "8.0.8",
@@ -58,18 +58,18 @@
5858
"json-schema": "0.4.0",
5959
"lerna": "8.1.2",
6060
"lerna-changelog": "2.2.0",
61-
"nock": "14.0.10",
61+
"nock": "14.0.13",
6262
"openapi-types": "12.1.3",
6363
"prettier": "3.4.2",
64-
"rimraf": "5.0.5",
64+
"rimraf": "5.0.10",
6565
"semantic-release": "23.1.1",
6666
"sqlite3": "5.1.7",
67-
"ts-jest": "29.4.1",
68-
"ts-json-schema-generator": "1.5.0",
67+
"ts-jest": "29.4.9",
68+
"ts-json-schema-generator": "1.5.1",
6969
"ts-node": "10.9.2",
70-
"typeorm": "0.3.20",
70+
"typeorm": "0.3.28",
7171
"typescript": "5.7.3",
72-
"uint8arrays": "5.1.0",
72+
"uint8arrays": "5.1.1",
7373
"uuid": "9.0.1",
7474
"web-did-resolver": "2.0.29"
7575
},

packages/cli/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,14 @@
100100
"yaml": "^2.3.4"
101101
},
102102
"devDependencies": {
103-
"@types/debug": "4.1.8",
104-
"@types/express": "4.17.17",
105-
"@types/inquirer": "9.0.3",
106-
"@types/inquirer-autocomplete-prompt": "3.0.0",
103+
"@types/debug": "4.1.13",
104+
"@types/express": "4.17.25",
105+
"@types/inquirer": "9.0.9",
106+
"@types/inquirer-autocomplete-prompt": "3.0.3",
107107
"@types/node-fetch": "3.0.3",
108-
"@types/passport-http-bearer": "1.0.37",
109-
"@types/qrcode-terminal": "0.12.0",
110-
"@types/url-parse": "1.4.8",
108+
"@types/passport-http-bearer": "1.0.42",
109+
"@types/qrcode-terminal": "0.12.2",
110+
"@types/url-parse": "1.4.11",
111111
"@types/ws": "8.5.5",
112112
"typescript": "5.7.3"
113113
},

packages/core-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"did-resolver": "^4.1.0"
3939
},
4040
"devDependencies": {
41-
"@types/debug": "4.1.8",
41+
"@types/debug": "4.1.13",
4242
"typescript": "5.7.3"
4343
},
4444
"files": [

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"z-schema": "^6.0.1"
1919
},
2020
"devDependencies": {
21-
"@types/debug": "4.1.8",
22-
"@types/events": "3.0.0",
21+
"@types/debug": "4.1.13",
22+
"@types/events": "3.0.3",
2323
"typescript": "5.7.3"
2424
},
2525
"files": [

packages/credential-eip712/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"eip-712-types-generation": "^0.1.6"
2121
},
2222
"devDependencies": {
23-
"@types/debug": "4.1.8",
23+
"@types/debug": "4.1.13",
2424
"typescript": "5.7.3"
2525
},
2626
"files": [

packages/credential-jwt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"did-jwt-vc": "^4.0.0"
2121
},
2222
"devDependencies": {
23-
"@types/debug": "4.1.8",
23+
"@types/debug": "4.1.13",
2424
"typescript": "5.7.3"
2525
},
2626
"files": [

0 commit comments

Comments
 (0)