Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/toolkit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: breeze87j/toolkit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 7 commits
  • 191 files changed
  • 1 contributor

Commits on Dec 25, 2021

  1. Delete .github directory

    breeze87j authored Dec 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e13eb56 View commit details
  2. Delete packages directory

    breeze87j authored Dec 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b9c129d View commit details
  3. Delete SECURITY.md

    breeze87j authored Dec 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6472d4a View commit details
  4. Delete res directory

    breeze87j authored Dec 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a9a22ff View commit details
  5. Delete .prettierignore

    breeze87j authored Dec 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dc8aa34 View commit details
  6. Delete scripts directory

    breeze87j authored Dec 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    32e2f37 View commit details
  7. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a53bd20 View commit details
Showing with 0 additions and 34,798 deletions.
  1. +0 −59 .github/CONTRIBUTING.md
  2. +0 −46 .github/ISSUE_TEMPLATE/bug_report.md
  3. +0 −25 .github/ISSUE_TEMPLATE/enhancement_request.md
  4. +0 −95 .github/workflows/artifact-tests.yml
  5. +0 −39 .github/workflows/audit.yml
  6. +0 −91 .github/workflows/cache-tests.yml
  7. +0 −37 .github/workflows/codeql.yml
  8. +0 −80 .github/workflows/releases.yml
  9. +0 −51 .github/workflows/unit-tests.yml
  10. +0 −45 .github/workflows/update-github.yaml
  11. +0 −3 .prettierignore
  12. +0 −3 SECURITY.md
  13. +0 −30 packages/artifact/CONTRIBUTIONS.md
  14. +0 −9 packages/artifact/LICENSE.md
  15. +0 −213 packages/artifact/README.md
  16. +0 −76 packages/artifact/RELEASES.md
  17. +0 −5 packages/artifact/__tests__/ci-test-action/action.yml
  18. +0 −14 packages/artifact/__tests__/ci-test-action/index.js
  19. +0 −552 packages/artifact/__tests__/download-specification.test.ts
  20. +0 −490 packages/artifact/__tests__/download.test.ts
  21. +0 −78 packages/artifact/__tests__/path-and-artifact-name-validation.test.ts
  22. +0 −114 packages/artifact/__tests__/retry.test.ts
  23. +0 −27 packages/artifact/__tests__/test-artifact-file.sh
  24. +0 −79 packages/artifact/__tests__/upload-gzip.test.ts
  25. +0 −353 packages/artifact/__tests__/upload-specification.test.ts
  26. +0 −551 packages/artifact/__tests__/upload.test.ts
  27. +0 −222 packages/artifact/__tests__/util.test.ts
  28. +0 −53 packages/artifact/docs/additional-information.md
  29. +0 −57 packages/artifact/docs/implementation-details.md
  30. +0 −139 packages/artifact/package-lock.json
  31. +0 −49 packages/artifact/package.json
  32. +0 −20 packages/artifact/src/artifact-client.ts
  33. +0 −51 packages/artifact/src/internal/__mocks__/config-variables.ts
  34. +0 −282 packages/artifact/src/internal/artifact-client.ts
  35. +0 −67 packages/artifact/src/internal/config-variables.ts
  36. +0 −76 packages/artifact/src/internal/contracts.ts
  37. +0 −355 packages/artifact/src/internal/download-http-client.ts
  38. +0 −7 packages/artifact/src/internal/download-options.ts
  39. +0 −11 packages/artifact/src/internal/download-response.ts
  40. +0 −87 packages/artifact/src/internal/download-specification.ts
  41. +0 −35 packages/artifact/src/internal/http-manager.ts
  42. +0 −82 packages/artifact/src/internal/path-and-artifact-name-validation.ts
  43. +0 −79 packages/artifact/src/internal/requestUtils.ts
  44. +0 −78 packages/artifact/src/internal/status-reporter.ts
  45. +0 −74 packages/artifact/src/internal/upload-gzip.ts
  46. +0 −563 packages/artifact/src/internal/upload-http-client.ts
  47. +0 −35 packages/artifact/src/internal/upload-options.ts
  48. +0 −22 packages/artifact/src/internal/upload-response.ts
  49. +0 −94 packages/artifact/src/internal/upload-specification.ts
  50. +0 −293 packages/artifact/src/internal/utils.ts
  51. +0 −11 packages/artifact/tsconfig.json
  52. +0 −9 packages/cache/LICENSE.md
  53. +0 −44 packages/cache/README.md
  54. +0 −45 packages/cache/RELEASES.md
  55. +0 −5 packages/cache/__tests__/__fixtures__/action.yml
  56. +0 −1 packages/cache/__tests__/__fixtures__/helloWorld.txt
  57. +0 −14 packages/cache/__tests__/__fixtures__/index.js
  58. +0 −141 packages/cache/__tests__/cacheHttpClient.test.ts
  59. +0 −34 packages/cache/__tests__/cacheUtils.test.ts
  60. +0 −17 packages/cache/__tests__/create-cache-files.sh
  61. +0 −160 packages/cache/__tests__/downloadUtils.test.ts
  62. +0 −54 packages/cache/__tests__/options.test.ts
  63. +0 −147 packages/cache/__tests__/requestUtils.test.ts
  64. +0 −271 packages/cache/__tests__/restoreCache.test.ts
  65. +0 −188 packages/cache/__tests__/saveCache.test.ts
  66. +0 −267 packages/cache/__tests__/tar.test.ts
  67. +0 −36 packages/cache/__tests__/verify-cache-files.sh
  68. +0 −4,582 packages/cache/package-lock.json
  69. +0 −55 packages/cache/package.json
  70. +0 −198 packages/cache/src/cache.ts
  71. +0 −316 packages/cache/src/internal/cacheHttpClient.ts
  72. +0 −125 packages/cache/src/internal/cacheUtils.ts
  73. +0 −23 packages/cache/src/internal/constants.ts
  74. +0 −25 packages/cache/src/internal/contracts.d.ts
  75. +0 −278 packages/cache/src/internal/downloadUtils.ts
  76. +0 −136 packages/cache/src/internal/requestUtils.ts
  77. +0 −155 packages/cache/src/internal/tar.ts
  78. +0 −109 packages/cache/src/options.ts
  79. +0 −12 packages/cache/tsconfig.json
  80. +0 −9 packages/core/LICENSE.md
  81. +0 −312 packages/core/README.md
  82. +0 −63 packages/core/RELEASES.md
  83. +0 −139 packages/core/__tests__/command.test.ts
  84. +0 −489 packages/core/__tests__/core.test.ts
  85. +0 −62 packages/core/package-lock.json
  86. +0 −44 packages/core/package.json
  87. +0 −94 packages/core/src/command.ts
  88. +0 −361 packages/core/src/core.ts
  89. +0 −24 packages/core/src/file-command.ts
  90. +0 −84 packages/core/src/oidc-utils.ts
  91. +0 −41 packages/core/src/utils.ts
  92. +0 −11 packages/core/tsconfig.json
  93. +0 −9 packages/exec/LICENSE.md
  94. +0 −57 packages/exec/README.md
  95. +0 −19 packages/exec/RELEASES.md
  96. +0 −1,214 packages/exec/__tests__/exec.test.ts
  97. +0 −12 packages/exec/__tests__/scripts/print args cmd with spaces.cmd
  98. +0 −12 packages/exec/__tests__/scripts/print-args-cmd.cmd
  99. +0 −14 packages/exec/__tests__/scripts/print-args-exe.cs
  100. +0 −11 packages/exec/__tests__/scripts/print-args-sh.sh
  101. +0 −1 packages/exec/__tests__/scripts/stderroutput.js
  102. +0 −5 packages/exec/__tests__/scripts/stdlineoutput.js
  103. +0 −1 packages/exec/__tests__/scripts/stdoutoutput.js
  104. +0 −3 packages/exec/__tests__/scripts/stdoutoutputlarge.js
  105. +0 −8 packages/exec/__tests__/scripts/stdoutputspecial.js
  106. +0 −35 packages/exec/__tests__/scripts/wait-for-file.js
  107. +0 −3 packages/exec/__tests__/scripts/wait-for-input.cmd
  108. +0 −3 packages/exec/__tests__/scripts/wait-for-input.js
  109. +0 −4 packages/exec/__tests__/scripts/wait-for-input.sh
  110. +0 −13 packages/exec/package-lock.json
  111. +0 −41 packages/exec/package.json
  112. +0 −90 packages/exec/src/exec.ts
  113. +0 −72 packages/exec/src/interfaces.ts
  114. +0 −703 packages/exec/src/toolrunner.ts
  115. +0 −11 packages/exec/tsconfig.json
  116. +0 −9 packages/github/LICENSE.md
  117. +0 −98 packages/github/README.md
  118. +0 −49 packages/github/RELEASES.md
  119. +0 −3 packages/github/__tests__/__snapshots__/lib.test.ts.snap
  120. +0 −109 packages/github/__tests__/github.proxy.test.ts
  121. +0 −156 packages/github/__tests__/github.test.ts
  122. +0 −81 packages/github/__tests__/lib.test.ts
  123. +0 −15 packages/github/__tests__/payload.json
  124. +0 −5 packages/github/__tests__/proxy.d.ts
  125. +0 −10 packages/github/jest.config.js
  126. +0 −7,496 packages/github/package-lock.json
  127. +0 −49 packages/github/package.json
  128. +0 −81 packages/github/src/context.ts
  129. +0 −20 packages/github/src/github.ts
  130. +0 −43 packages/github/src/interfaces.ts
  131. +0 −25 packages/github/src/internal/utils.ts
  132. +0 −44 packages/github/src/utils.ts
  133. +0 −11 packages/github/tsconfig.json
  134. +0 −9 packages/glob/LICENSE.md
  135. +0 −113 packages/glob/README.md
  136. +0 −17 packages/glob/RELEASES.md
  137. +0 −126 packages/glob/__tests__/hash-files.test.ts
  138. +0 −888 packages/glob/__tests__/internal-globber.test.ts
  139. +0 −640 packages/glob/__tests__/internal-path-helper.test.ts
  140. +0 −92 packages/glob/__tests__/internal-path.test.ts
  141. +0 −152 packages/glob/__tests__/internal-pattern-helper.test.ts
  142. +0 −352 packages/glob/__tests__/internal-pattern.test.ts
  143. +0 −40 packages/glob/package-lock.json
  144. +0 −43 packages/glob/package.json
  145. +0 −37 packages/glob/src/glob.ts
  146. +0 −38 packages/glob/src/internal-glob-options-helper.ts
  147. +0 −39 packages/glob/src/internal-glob-options.ts
  148. +0 −243 packages/glob/src/internal-globber.ts
  149. +0 −12 packages/glob/src/internal-hash-file-options.ts
  150. +0 −42 packages/glob/src/internal-hash-files.ts
  151. +0 −16 packages/glob/src/internal-match-kind.ts
  152. +0 −206 packages/glob/src/internal-path-helper.ts
  153. +0 −113 packages/glob/src/internal-path.ts
  154. +0 −81 packages/glob/src/internal-pattern-helper.ts
  155. +0 −340 packages/glob/src/internal-pattern.ts
  156. +0 −9 packages/glob/src/internal-search-state.ts
  157. +0 −11 packages/glob/tsconfig.json
  158. +0 −9 packages/io/LICENSE.md
  159. +0 −53 packages/io/README.md
  160. +0 −16 packages/io/RELEASES.md
  161. +0 −1,588 packages/io/__tests__/io.test.ts
  162. +0 −5 packages/io/package-lock.json
  163. +0 −37 packages/io/package.json
  164. +0 −173 packages/io/src/io-util.ts
  165. +0 −365 packages/io/src/io.ts
  166. +0 −11 packages/io/tsconfig.json
  167. +0 −9 packages/tool-cache/LICENSE.md
  168. +0 −86 packages/tool-cache/README.md
  169. +0 −58 packages/tool-cache/RELEASES.md
  170. +0 −1 packages/tool-cache/__tests__/data/archive-content/file-with-ç-character.txt
  171. +0 −1 packages/tool-cache/__tests__/data/archive-content/file.txt
  172. +0 −1 packages/tool-cache/__tests__/data/archive-content/folder/nested-file.txt
  173. BIN packages/tool-cache/__tests__/data/test.7z
  174. BIN packages/tool-cache/__tests__/data/test.tar.gz
  175. BIN packages/tool-cache/__tests__/data/test.tar.xz
  176. +0 −86 packages/tool-cache/__tests__/data/versions-manifest.json
  177. +0 −314 packages/tool-cache/__tests__/manifest.test.ts
  178. +0 −125 packages/tool-cache/__tests__/retry-helper.test.ts
  179. +0 −914 packages/tool-cache/__tests__/tool-cache.test.ts
  180. +0 −217 packages/tool-cache/package-lock.json
  181. +0 −52 packages/tool-cache/package.json
  182. +0 −60 packages/tool-cache/scripts/Invoke-7zdec.ps1
  183. BIN packages/tool-cache/scripts/externals/7zdec.exe
  184. +0 −168 packages/tool-cache/src/manifest.ts
  185. +0 −62 packages/tool-cache/src/retry-helper.ts
  186. +0 −777 packages/tool-cache/src/tool-cache.ts
  187. +0 −11 packages/tool-cache/tsconfig.json
  188. BIN res/at-logo.png
  189. +0 −89 scripts/audit-allow-list
  190. +0 −13 scripts/create-package
  191. +0 −6 tsconfig.eslint.json
59 changes: 0 additions & 59 deletions .github/CONTRIBUTING.md

This file was deleted.

46 changes: 0 additions & 46 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/enhancement_request.md

This file was deleted.

95 changes: 0 additions & 95 deletions .github/workflows/artifact-tests.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/audit.yml

This file was deleted.

91 changes: 0 additions & 91 deletions .github/workflows/cache-tests.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/codeql.yml

This file was deleted.

80 changes: 0 additions & 80 deletions .github/workflows/releases.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/unit-tests.yml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/update-github.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .prettierignore

This file was deleted.

3 changes: 0 additions & 3 deletions SECURITY.md

This file was deleted.

30 changes: 0 additions & 30 deletions packages/artifact/CONTRIBUTIONS.md

This file was deleted.

9 changes: 0 additions & 9 deletions packages/artifact/LICENSE.md

This file was deleted.

213 changes: 0 additions & 213 deletions packages/artifact/README.md

This file was deleted.

76 changes: 0 additions & 76 deletions packages/artifact/RELEASES.md

This file was deleted.

5 changes: 0 additions & 5 deletions packages/artifact/__tests__/ci-test-action/action.yml

This file was deleted.

14 changes: 0 additions & 14 deletions packages/artifact/__tests__/ci-test-action/index.js

This file was deleted.

552 changes: 0 additions & 552 deletions packages/artifact/__tests__/download-specification.test.ts

This file was deleted.

490 changes: 0 additions & 490 deletions packages/artifact/__tests__/download.test.ts

This file was deleted.

This file was deleted.

114 changes: 0 additions & 114 deletions packages/artifact/__tests__/retry.test.ts

This file was deleted.

27 changes: 0 additions & 27 deletions packages/artifact/__tests__/test-artifact-file.sh

This file was deleted.

79 changes: 0 additions & 79 deletions packages/artifact/__tests__/upload-gzip.test.ts

This file was deleted.

353 changes: 0 additions & 353 deletions packages/artifact/__tests__/upload-specification.test.ts

This file was deleted.

551 changes: 0 additions & 551 deletions packages/artifact/__tests__/upload.test.ts

This file was deleted.

222 changes: 0 additions & 222 deletions packages/artifact/__tests__/util.test.ts

This file was deleted.

53 changes: 0 additions & 53 deletions packages/artifact/docs/additional-information.md

This file was deleted.

57 changes: 0 additions & 57 deletions packages/artifact/docs/implementation-details.md

This file was deleted.

139 changes: 0 additions & 139 deletions packages/artifact/package-lock.json

This file was deleted.

49 changes: 0 additions & 49 deletions packages/artifact/package.json

This file was deleted.

20 changes: 0 additions & 20 deletions packages/artifact/src/artifact-client.ts

This file was deleted.

51 changes: 0 additions & 51 deletions packages/artifact/src/internal/__mocks__/config-variables.ts

This file was deleted.

282 changes: 0 additions & 282 deletions packages/artifact/src/internal/artifact-client.ts

This file was deleted.

67 changes: 0 additions & 67 deletions packages/artifact/src/internal/config-variables.ts

This file was deleted.

76 changes: 0 additions & 76 deletions packages/artifact/src/internal/contracts.ts

This file was deleted.

355 changes: 0 additions & 355 deletions packages/artifact/src/internal/download-http-client.ts

This file was deleted.

7 changes: 0 additions & 7 deletions packages/artifact/src/internal/download-options.ts

This file was deleted.

11 changes: 0 additions & 11 deletions packages/artifact/src/internal/download-response.ts

This file was deleted.

87 changes: 0 additions & 87 deletions packages/artifact/src/internal/download-specification.ts

This file was deleted.

35 changes: 0 additions & 35 deletions packages/artifact/src/internal/http-manager.ts

This file was deleted.

Loading