Skip to content

Commit 20f03a2

Browse files
authored
Merge pull request #131 from multiformats/master-upgrade
upgrade@20042301194
2 parents 2e03520 + 8d90574 commit 20f03a2

File tree

4 files changed

+628
-603
lines changed

4 files changed

+628
-603
lines changed

.github/workflows/fix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,9 @@ jobs:
166166
with:
167167
path: artifacts
168168
- name: Copy YAML configs
169-
run: cp artifacts/**/*.yml head/github
169+
run: |
170+
shopt -s globstar
171+
cp artifacts/**/*.yml head/github
170172
- name: Check if github was modified
171173
id: github-modified
172174
run: |

scripts/package.json

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,38 @@
1919
"dependencies": {
2020
"@actions/core": "^1.11.1",
2121
"@actions/exec": "^1.1.1",
22-
"@actions/github": "^6.0.0",
23-
"@octokit/auth-app": "^7.2.0",
24-
"@octokit/core": "^6.1.5",
25-
"@octokit/graphql": "^8.2.2",
26-
"@octokit/plugin-paginate-rest": "^13.1.1",
27-
"@octokit/plugin-retry": "^7.2.1",
28-
"@octokit/plugin-throttling": "^11.0.1",
29-
"@octokit/rest": "^21.1.1",
22+
"@actions/github": "^6.0.1",
23+
"@octokit/auth-app": "^8.1.2",
24+
"@octokit/core": "^7.0.6",
25+
"@octokit/graphql": "^9.0.3",
26+
"@octokit/plugin-paginate-rest": "^14.0.0",
27+
"@octokit/plugin-retry": "^8.0.3",
28+
"@octokit/plugin-throttling": "^11.0.3",
29+
"@octokit/rest": "^22.0.1",
3030
"class-transformer": "^0.5.1",
3131
"deep-diff": "^1.0.2",
3232
"hcl2-parser": "^1.0.3",
3333
"reflect-metadata": "^0.2.2",
34-
"yaml": "^2.7.1"
34+
"yaml": "^2.8.1"
3535
},
3636
"devDependencies": {
37-
"@eslint/js": "^9.24.0",
38-
"@octokit/types": "^14.0.0",
37+
"@eslint/js": "^9.39.1",
38+
"@octokit/types": "^16.0.0",
3939
"@types/deep-diff": "^1.0.5",
40-
"@types/node": "^22.14.1",
41-
"eslint": "^9.25.0",
42-
"eslint-config-prettier": "^10.1.2",
43-
"eslint-plugin-prettier": "^5.2.6",
44-
"prettier": "^3.5.3",
40+
"@types/node": "^24.10.0",
41+
"eslint": "^9.39.1",
42+
"eslint-config-prettier": "^10.1.8",
43+
"eslint-plugin-prettier": "^5.5.4",
44+
"prettier": "^3.6.2",
4545
"ts-json-schema-generator": "^2.4.0",
46-
"tsx": "^4.19.3",
47-
"typescript": "^5.8.3",
48-
"typescript-eslint": "^8.39.0"
46+
"tsx": "^4.20.6",
47+
"typescript": "^5.9.3",
48+
"typescript-eslint": "^8.46.4"
49+
},
50+
"pnpm": {
51+
"overrides": {
52+
"glob": "^11.1.0",
53+
"js-yaml": "^4.1.1"
54+
}
4955
}
5056
}

0 commit comments

Comments
 (0)