Skip to content

Commit 03970d5

Browse files
Merge pull request #203 from technote-space/release/next-v2.1.1
Release/next v2.1.1
2 parents 98f40fa + 12b83f6 commit 03970d5

File tree

3 files changed

+56
-42
lines changed

3 files changed

+56
-42
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@technote-space/github-action-config-helper",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Helper for GitHub Action to manage config.",
55
"keywords": [
66
"github",
@@ -39,18 +39,18 @@
3939
"dependencies": {
4040
"@actions/github": "^5.0.1",
4141
"@octokit/plugin-rest-endpoint-methods": "^5.13.0",
42-
"@technote-space/github-action-helper": "^5.3.2",
42+
"@technote-space/github-action-helper": "^5.3.4",
4343
"js-yaml": "^4.1.0"
4444
},
4545
"devDependencies": {
4646
"@rollup/plugin-typescript": "^8.3.2",
4747
"@sindresorhus/tsconfig": "^2.0.0",
48-
"@technote-space/github-action-test-helper": "^0.9.3",
48+
"@technote-space/github-action-test-helper": "^0.9.4",
4949
"@types/js-yaml": "^4.0.5",
5050
"@types/node": "^17.0.25",
5151
"@typescript-eslint/eslint-plugin": "^5.20.0",
5252
"@typescript-eslint/parser": "^5.20.0",
53-
"c8": "^7.11.0",
53+
"c8": "^7.11.2",
5454
"eslint": "^8.13.0",
5555
"eslint-plugin-import": "^2.26.0",
5656
"nock": "^13.2.4",

rollup.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export default {
99
plugins: [
1010
pluginTypescript(),
1111
],
12+
external: ['path', 'js-yaml'],
1213
};

yarn.lock

+51-38
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,29 @@
6060
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
6161
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
6262

63-
"@istanbuljs/schema@^0.1.2":
63+
"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3":
6464
version "0.1.3"
6565
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
6666
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
6767

68+
"@jridgewell/resolve-uri@^3.0.3":
69+
version "3.0.5"
70+
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c"
71+
integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==
72+
73+
"@jridgewell/sourcemap-codec@^1.4.10":
74+
version "1.4.11"
75+
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec"
76+
integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==
77+
78+
"@jridgewell/trace-mapping@^0.3.7":
79+
version "0.3.8"
80+
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.8.tgz#46d8fb0910529a72f01388b424463015ea78b449"
81+
integrity sha512-zdpaWDz5IEyHlu1EO+B+qRHmJkSxMVV6SXngDry9n1ZqslLXFH9Dw6lRqDidm/sOJAWdRltJsmZ1SK28/uZKsw==
82+
dependencies:
83+
"@jridgewell/resolve-uri" "^3.0.3"
84+
"@jridgewell/sourcemap-codec" "^1.4.10"
85+
6886
"@nodelib/[email protected]":
6987
version "2.1.5"
7088
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
@@ -194,31 +212,31 @@
194212
resolved "https://registry.yarnpkg.com/@sindresorhus/tsconfig/-/tsconfig-2.0.0.tgz#610e1cb8ed4e1cb7ff0cb4cb8712cd607315c152"
195213
integrity sha512-1nsyWtFtPpVjEnNzp2rd03BVz84BYHeW7LNYvmcj3q4jAgJL2hl0XBp3WmDFFPjFLF3w+L0XEYqhjWUTU+TCzw==
196214

197-
"@technote-space/github-action-helper@^5.3.2":
198-
version "5.3.2"
199-
resolved "https://registry.yarnpkg.com/@technote-space/github-action-helper/-/github-action-helper-5.3.2.tgz#a7cc47da592329d242b3be6bc41e6d992bbcbc97"
200-
integrity sha512-LUUq5pXF+tDM7Bcx6Je8c/s1nHq00fCdHpedxUOgQdT3nMmXN4xhxqiJGi6YZNewCbt+wBbGQ6ucpcn3GnN3cg==
215+
"@technote-space/github-action-helper@^5.3.4":
216+
version "5.3.4"
217+
resolved "https://registry.yarnpkg.com/@technote-space/github-action-helper/-/github-action-helper-5.3.4.tgz#498b193e50d50b521acad6e895ad39ae2962bd8a"
218+
integrity sha512-krNOPcudU1Wq17VkHr5IRaEcD430a8JykGKiws/AsLXyJfPCQJ9+Db5ezbAD7qW78jSV8GSuKrI/DSFTbc8AWQ==
201219
dependencies:
202220
"@actions/core" "^1.6.0"
203221
"@actions/github" "^5.0.1"
204222
"@octokit/openapi-types" "^11.2.0"
205223
"@octokit/plugin-rest-endpoint-methods" "^5.13.0"
206-
"@technote-space/github-action-log-helper" "^0.2.1"
224+
"@technote-space/github-action-log-helper" "^0.2.3"
207225
shell-escape "^0.2.0"
208226
sprintf-js "^1.1.2"
209227

210-
"@technote-space/github-action-log-helper@^0.2.1":
211-
version "0.2.2"
212-
resolved "https://registry.yarnpkg.com/@technote-space/github-action-log-helper/-/github-action-log-helper-0.2.2.tgz#90bf784372a4af0fb720778b81c3b75de9b5cafa"
213-
integrity sha512-5jHDxczTLgC4tCJ8Xc7+g1l3N1rEjfogYJiYMUA16a0okD27x9Ymq6pnlDsV6zfsq6bTlTBEHFWLFJgjVKkZpg==
228+
"@technote-space/github-action-log-helper@^0.2.3":
229+
version "0.2.3"
230+
resolved "https://registry.yarnpkg.com/@technote-space/github-action-log-helper/-/github-action-log-helper-0.2.3.tgz#3c5dd037284e714daed75fb4986c802652b46292"
231+
integrity sha512-U0MsgYEugAaT/7IMs9+SneRBqisvN/fCn1DYwFVSt9jwpnbf5r08asl2gCvfn40/TbI3dU0fkDUePMxTd8mObg==
214232
dependencies:
215233
"@actions/core" "^1.6.0"
216234
sprintf-js "^1.1.2"
217235

218-
"@technote-space/github-action-test-helper@^0.9.3":
219-
version "0.9.3"
220-
resolved "https://registry.yarnpkg.com/@technote-space/github-action-test-helper/-/github-action-test-helper-0.9.3.tgz#b7e4e3bce6ebd0543000740ac297947e44de8b68"
221-
integrity sha512-8h97sKU9rNteyErnzfTimnUifVE6SFa3HebzPWWeEIjt7KPPFCXrSaAIx1o+4Es1In46oOLZQRJOK1fwSKEaYg==
236+
"@technote-space/github-action-test-helper@^0.9.4":
237+
version "0.9.4"
238+
resolved "https://registry.yarnpkg.com/@technote-space/github-action-test-helper/-/github-action-test-helper-0.9.4.tgz#8556c6eda3cac00d3822421ce555d6e0243ad69c"
239+
integrity sha512-g52/SNKL6ilSCgvtNjmZTJAePFwk6o6TI34B7CaoZMOQNzRUCH37NFL590aIow2LjlezMdvOXg2WLXirEgeX+Q==
222240
dependencies:
223241
"@actions/core" "^1.6.0"
224242
"@actions/github" "^5.0.1"
@@ -441,23 +459,23 @@ braces@^3.0.2:
441459
dependencies:
442460
fill-range "^7.0.1"
443461

444-
c8@^7.11.0:
445-
version "7.11.0"
446-
resolved "https://registry.yarnpkg.com/c8/-/c8-7.11.0.tgz#b3ab4e9e03295a102c47ce11d4ef6d735d9a9ac9"
447-
integrity sha512-XqPyj1uvlHMr+Y1IeRndC2X5P7iJzJlEJwBpCdBbq2JocXOgJfr+JVfJkyNMGROke5LfKrhSFXGFXnwnRJAUJw==
462+
c8@^7.11.2:
463+
version "7.11.2"
464+
resolved "https://registry.yarnpkg.com/c8/-/c8-7.11.2.tgz#2f2103e39079899041e612999a16b31d7ea6d463"
465+
integrity sha512-6ahJSrhS6TqSghHm+HnWt/8Y2+z0hM/FQyB1ybKhAR30+NYL9CTQ1uwHxuWw6U7BHlHv6wvhgOrH81I+lfCkxg==
448466
dependencies:
449467
"@bcoe/v8-coverage" "^0.2.3"
450-
"@istanbuljs/schema" "^0.1.2"
468+
"@istanbuljs/schema" "^0.1.3"
451469
find-up "^5.0.0"
452470
foreground-child "^2.0.0"
453-
istanbul-lib-coverage "^3.0.1"
471+
istanbul-lib-coverage "^3.2.0"
454472
istanbul-lib-report "^3.0.0"
455-
istanbul-reports "^3.0.2"
456-
rimraf "^3.0.0"
473+
istanbul-reports "^3.1.4"
474+
rimraf "^3.0.2"
457475
test-exclude "^6.0.0"
458-
v8-to-istanbul "^8.0.0"
476+
v8-to-istanbul "^9.0.0"
459477
yargs "^16.2.0"
460-
yargs-parser "^20.2.7"
478+
yargs-parser "^20.2.9"
461479

462480
call-bind@^1.0.0, call-bind@^1.0.2:
463481
version "1.0.2"
@@ -1312,7 +1330,7 @@ isexe@^2.0.0:
13121330
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
13131331
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
13141332

1315-
istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.0.1:
1333+
istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0:
13161334
version "3.2.0"
13171335
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3"
13181336
integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==
@@ -1326,7 +1344,7 @@ istanbul-lib-report@^3.0.0:
13261344
make-dir "^3.0.0"
13271345
supports-color "^7.1.0"
13281346

1329-
istanbul-reports@^3.0.2:
1347+
istanbul-reports@^3.1.4:
13301348
version "3.1.4"
13311349
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c"
13321350
integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==
@@ -1680,7 +1698,7 @@ reusify@^1.0.4:
16801698
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
16811699
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
16821700

1683-
rimraf@^3.0.0, rimraf@^3.0.2:
1701+
rimraf@^3.0.2:
16841702
version "3.0.2"
16851703
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
16861704
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
@@ -1759,11 +1777,6 @@ source-map-js@^1.0.2:
17591777
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
17601778
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
17611779

1762-
source-map@^0.7.3:
1763-
version "0.7.3"
1764-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
1765-
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
1766-
17671780
sprintf-js@^1.1.2:
17681781
version "1.1.2"
17691782
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673"
@@ -1935,14 +1948,14 @@ v8-compile-cache@^2.0.3:
19351948
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
19361949
integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
19371950

1938-
v8-to-istanbul@^8.0.0:
1939-
version "8.1.1"
1940-
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz#77b752fd3975e31bbcef938f85e9bd1c7a8d60ed"
1941-
integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==
1951+
v8-to-istanbul@^9.0.0:
1952+
version "9.0.0"
1953+
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.0.tgz#be0dae58719fc53cb97e5c7ac1d7e6d4f5b19511"
1954+
integrity sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw==
19421955
dependencies:
1956+
"@jridgewell/trace-mapping" "^0.3.7"
19431957
"@types/istanbul-lib-coverage" "^2.0.1"
19441958
convert-source-map "^1.6.0"
1945-
source-map "^0.7.3"
19461959

19471960
vite@^2.9.1:
19481961
version "2.9.5"
@@ -2029,7 +2042,7 @@ yallist@^4.0.0:
20292042
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
20302043
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
20312044

2032-
yargs-parser@^20.2.2, yargs-parser@^20.2.7:
2045+
yargs-parser@^20.2.2, yargs-parser@^20.2.9:
20332046
version "20.2.9"
20342047
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
20352048
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==

0 commit comments

Comments
 (0)