@xcelera/cli 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devcontainer/devcontainer.json +41 -0
- package/.env.example +61 -0
- package/.gitattributes +3 -0
- package/.github/dependabot.yml +30 -0
- package/.github/workflows/check-dist.yml +72 -0
- package/.github/workflows/ci.yml +65 -0
- package/.github/workflows/codeql-analysis.yml +48 -0
- package/.github/workflows/licensed.yml +74 -0
- package/.github/workflows/linter.yml +53 -0
- package/.licensed.yml +18 -0
- package/.licenses/npm/@actions/core.dep.yml +20 -0
- package/.licenses/npm/@actions/exec.dep.yml +20 -0
- package/.licenses/npm/@actions/http-client.dep.yml +32 -0
- package/.licenses/npm/@actions/io.dep.yml +20 -0
- package/.licenses/npm/@fastify/busboy.dep.yml +30 -0
- package/.licenses/npm/tunnel.dep.yml +35 -0
- package/.licenses/npm/undici.dep.yml +34 -0
- package/.markdown-lint.yml +24 -0
- package/.node-version +1 -0
- package/.nvmrc +1 -0
- package/.prettierignore +5 -0
- package/.prettierrc.yml +16 -0
- package/.vscode/launch.json +15 -0
- package/.yaml-lint.yml +14 -0
- package/CODEOWNERS +7 -0
- package/LICENSE +21 -0
- package/README.md +30 -0
- package/action.yml +29 -0
- package/badges/coverage.svg +1 -0
- package/dist/action.js +31290 -0
- package/dist/action.js.map +1 -0
- package/dist/cli.js +95 -0
- package/eslint.config.mjs +81 -0
- package/jest.config.js +40 -0
- package/package.json +76 -0
- package/rollup.config.ts +30 -0
- package/script/release +133 -0
- package/src/action.ts +35 -0
- package/src/api.ts +46 -0
- package/src/cli.ts +84 -0
- package/src/git.ts +66 -0
- package/src/types/git.ts +5 -0
- package/src/types/parse-github-url.d.ts +12 -0
- package/tsconfig.base.json +23 -0
- package/tsconfig.eslint.json +17 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "GitHub Actions (TypeScript)",
|
|
3
|
+
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
|
|
4
|
+
"postCreateCommand": "npm install",
|
|
5
|
+
"customizations": {
|
|
6
|
+
"codespaces": {
|
|
7
|
+
"openFiles": ["README.md"]
|
|
8
|
+
},
|
|
9
|
+
"vscode": {
|
|
10
|
+
"extensions": [
|
|
11
|
+
"bierner.markdown-preview-github-styles",
|
|
12
|
+
"davidanson.vscode-markdownlint",
|
|
13
|
+
"dbaeumer.vscode-eslint",
|
|
14
|
+
"esbenp.prettier-vscode",
|
|
15
|
+
"github.copilot",
|
|
16
|
+
"github.copilot-chat",
|
|
17
|
+
"github.vscode-github-actions",
|
|
18
|
+
"github.vscode-pull-request-github",
|
|
19
|
+
"me-dutour-mathieu.vscode-github-actions",
|
|
20
|
+
"redhat.vscode-yaml",
|
|
21
|
+
"rvest.vs-code-prettier-eslint",
|
|
22
|
+
"yzhang.markdown-all-in-one"
|
|
23
|
+
],
|
|
24
|
+
"settings": {
|
|
25
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
26
|
+
"editor.tabSize": 2,
|
|
27
|
+
"editor.formatOnSave": true,
|
|
28
|
+
"markdown.extension.list.indentationSize": "adaptive",
|
|
29
|
+
"markdown.extension.italic.indicator": "_",
|
|
30
|
+
"markdown.extension.orderedList.marker": "one"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"remoteEnv": {
|
|
35
|
+
"GITHUB_TOKEN": "${localEnv:GITHUB_TOKEN}"
|
|
36
|
+
},
|
|
37
|
+
"features": {
|
|
38
|
+
"ghcr.io/devcontainers/features/github-cli:1": {},
|
|
39
|
+
"ghcr.io/devcontainers-community/npm-features/prettier:1": {}
|
|
40
|
+
}
|
|
41
|
+
}
|
package/.env.example
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# dotenv-linter:off IncorrectDelimiter
|
|
2
|
+
|
|
3
|
+
# Do not commit your actual .env file to Git! This may contain secrets or other
|
|
4
|
+
# private information.
|
|
5
|
+
|
|
6
|
+
# Enable/disable step debug logging (default: `false`). For local debugging, it
|
|
7
|
+
# may be useful to set it to `true`.
|
|
8
|
+
ACTIONS_STEP_DEBUG=true
|
|
9
|
+
|
|
10
|
+
# GitHub Actions inputs should follow `INPUT_<name>` format (case-sensitive).
|
|
11
|
+
# Hyphens should not be converted to underscores!
|
|
12
|
+
INPUT_MILLISECONDS=2400
|
|
13
|
+
|
|
14
|
+
# GitHub Actions default environment variables. These are set for every run of a
|
|
15
|
+
# workflow and can be used in your actions. Setting the value here will override
|
|
16
|
+
# any value set by the local-action tool.
|
|
17
|
+
# https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
|
|
18
|
+
|
|
19
|
+
# CI="true"
|
|
20
|
+
# GITHUB_ACTION=""
|
|
21
|
+
# GITHUB_ACTION_PATH=""
|
|
22
|
+
# GITHUB_ACTION_REPOSITORY=""
|
|
23
|
+
# GITHUB_ACTIONS=""
|
|
24
|
+
# GITHUB_ACTOR=""
|
|
25
|
+
# GITHUB_ACTOR_ID=""
|
|
26
|
+
# GITHUB_API_URL=""
|
|
27
|
+
# GITHUB_BASE_REF=""
|
|
28
|
+
# GITHUB_ENV=""
|
|
29
|
+
# GITHUB_EVENT_NAME=""
|
|
30
|
+
# GITHUB_EVENT_PATH=""
|
|
31
|
+
# GITHUB_GRAPHQL_URL=""
|
|
32
|
+
# GITHUB_HEAD_REF=""
|
|
33
|
+
# GITHUB_JOB=""
|
|
34
|
+
# GITHUB_OUTPUT=""
|
|
35
|
+
# GITHUB_PATH=""
|
|
36
|
+
# GITHUB_REF=""
|
|
37
|
+
# GITHUB_REF_NAME=""
|
|
38
|
+
# GITHUB_REF_PROTECTED=""
|
|
39
|
+
# GITHUB_REF_TYPE=""
|
|
40
|
+
# GITHUB_REPOSITORY=""
|
|
41
|
+
# GITHUB_REPOSITORY_ID=""
|
|
42
|
+
# GITHUB_REPOSITORY_OWNER=""
|
|
43
|
+
# GITHUB_REPOSITORY_OWNER_ID=""
|
|
44
|
+
# GITHUB_RETENTION_DAYS=""
|
|
45
|
+
# GITHUB_RUN_ATTEMPT=""
|
|
46
|
+
# GITHUB_RUN_ID=""
|
|
47
|
+
# GITHUB_RUN_NUMBER=""
|
|
48
|
+
# GITHUB_SERVER_URL=""
|
|
49
|
+
# GITHUB_SHA=""
|
|
50
|
+
# GITHUB_STEP_SUMMARY=""
|
|
51
|
+
# GITHUB_TRIGGERING_ACTOR=""
|
|
52
|
+
# GITHUB_WORKFLOW=""
|
|
53
|
+
# GITHUB_WORKFLOW_REF=""
|
|
54
|
+
# GITHUB_WORKFLOW_SHA=""
|
|
55
|
+
# GITHUB_WORKSPACE=""
|
|
56
|
+
# RUNNER_ARCH=""
|
|
57
|
+
# RUNNER_DEBUG=""
|
|
58
|
+
# RUNNER_NAME=""
|
|
59
|
+
# RUNNER_OS=""
|
|
60
|
+
# RUNNER_TEMP=""
|
|
61
|
+
# RUNNER_TOOL_CACHE=""
|
package/.gitattributes
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
- package-ecosystem: github-actions
|
|
4
|
+
directory: /
|
|
5
|
+
schedule:
|
|
6
|
+
interval: weekly
|
|
7
|
+
groups:
|
|
8
|
+
actions-minor:
|
|
9
|
+
update-types:
|
|
10
|
+
- minor
|
|
11
|
+
- patch
|
|
12
|
+
|
|
13
|
+
- package-ecosystem: npm
|
|
14
|
+
directory: /
|
|
15
|
+
schedule:
|
|
16
|
+
interval: weekly
|
|
17
|
+
ignore:
|
|
18
|
+
- dependency-name: '@types/node'
|
|
19
|
+
update-types:
|
|
20
|
+
- 'version-update:semver-major'
|
|
21
|
+
groups:
|
|
22
|
+
npm-development:
|
|
23
|
+
dependency-type: development
|
|
24
|
+
update-types:
|
|
25
|
+
- minor
|
|
26
|
+
- patch
|
|
27
|
+
npm-production:
|
|
28
|
+
dependency-type: production
|
|
29
|
+
update-types:
|
|
30
|
+
- patch
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# In TypeScript actions, `dist/` is a special directory. When you reference
|
|
2
|
+
# an action with the `uses:` property, `dist/action.js` is the code that will be
|
|
3
|
+
# run. For this project, the `dist/action.js` file is transpiled from other
|
|
4
|
+
# source files. This workflow ensures the `dist/` directory contains the
|
|
5
|
+
# expected transpiled code.
|
|
6
|
+
#
|
|
7
|
+
# If this workflow is run from a feature branch, it will act as an additional CI
|
|
8
|
+
# check and fail if the checked-in `dist/` directory does not match what is
|
|
9
|
+
# expected from the build.
|
|
10
|
+
name: Check Transpiled JavaScript
|
|
11
|
+
|
|
12
|
+
on:
|
|
13
|
+
pull_request:
|
|
14
|
+
branches:
|
|
15
|
+
- main
|
|
16
|
+
push:
|
|
17
|
+
branches:
|
|
18
|
+
- main
|
|
19
|
+
|
|
20
|
+
permissions:
|
|
21
|
+
contents: read
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
check-dist:
|
|
25
|
+
name: Check dist/
|
|
26
|
+
runs-on: ubuntu-latest
|
|
27
|
+
|
|
28
|
+
steps:
|
|
29
|
+
- name: Checkout
|
|
30
|
+
id: checkout
|
|
31
|
+
uses: actions/checkout@v4
|
|
32
|
+
|
|
33
|
+
- name: Setup Node.js
|
|
34
|
+
id: setup-node
|
|
35
|
+
uses: actions/setup-node@v4
|
|
36
|
+
with:
|
|
37
|
+
node-version-file: .node-version
|
|
38
|
+
cache: npm
|
|
39
|
+
|
|
40
|
+
- name: Install Dependencies
|
|
41
|
+
id: install
|
|
42
|
+
run: npm ci
|
|
43
|
+
|
|
44
|
+
- name: Build dist/ Directory
|
|
45
|
+
id: build
|
|
46
|
+
run: npm run bundle
|
|
47
|
+
|
|
48
|
+
# This will fail the workflow if the `dist/` directory is different than
|
|
49
|
+
# expected.
|
|
50
|
+
- name: Compare Directories
|
|
51
|
+
id: diff
|
|
52
|
+
run: |
|
|
53
|
+
if [ ! -d dist/ ]; then
|
|
54
|
+
echo "Expected dist/ directory does not exist. See status below:"
|
|
55
|
+
ls -la ./
|
|
56
|
+
exit 1
|
|
57
|
+
fi
|
|
58
|
+
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
|
|
59
|
+
echo "Detected uncommitted changes after build. See status below:"
|
|
60
|
+
git diff --ignore-space-at-eol --text dist/
|
|
61
|
+
exit 1
|
|
62
|
+
fi
|
|
63
|
+
|
|
64
|
+
# If `dist/` was different than expected, upload the expected version as a
|
|
65
|
+
# workflow artifact.
|
|
66
|
+
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
|
|
67
|
+
name: Upload Artifact
|
|
68
|
+
id: upload
|
|
69
|
+
uses: actions/upload-artifact@v4
|
|
70
|
+
with:
|
|
71
|
+
name: dist
|
|
72
|
+
path: dist/
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
name: Continuous Integration
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
push:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
test-typescript:
|
|
16
|
+
name: TypeScript Tests
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Checkout
|
|
21
|
+
id: checkout
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- name: Setup Node.js
|
|
25
|
+
id: setup-node
|
|
26
|
+
uses: actions/setup-node@v4
|
|
27
|
+
with:
|
|
28
|
+
node-version-file: .node-version
|
|
29
|
+
cache: npm
|
|
30
|
+
|
|
31
|
+
- name: Install Dependencies
|
|
32
|
+
id: npm-ci
|
|
33
|
+
run: npm ci
|
|
34
|
+
|
|
35
|
+
- name: Check Format
|
|
36
|
+
id: npm-format-check
|
|
37
|
+
run: npm run format:check
|
|
38
|
+
|
|
39
|
+
- name: Lint
|
|
40
|
+
id: npm-lint
|
|
41
|
+
run: npm run lint
|
|
42
|
+
|
|
43
|
+
- name: Test
|
|
44
|
+
id: npm-ci-test
|
|
45
|
+
run: npm run ci-test
|
|
46
|
+
|
|
47
|
+
test-action:
|
|
48
|
+
name: GitHub Actions Test
|
|
49
|
+
runs-on: ubuntu-latest
|
|
50
|
+
|
|
51
|
+
steps:
|
|
52
|
+
- name: Checkout
|
|
53
|
+
id: checkout
|
|
54
|
+
uses: actions/checkout@v4
|
|
55
|
+
|
|
56
|
+
- name: Test Local Action
|
|
57
|
+
id: test-action
|
|
58
|
+
uses: ./
|
|
59
|
+
with:
|
|
60
|
+
url: https://xcelera.dev
|
|
61
|
+
token: ${{ secrets.XCELERA_TOKEN }}
|
|
62
|
+
|
|
63
|
+
- name: Print Output
|
|
64
|
+
id: output
|
|
65
|
+
run: echo "${{ steps.test-action.outputs.status }}"
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: CodeQL
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
push:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
schedule:
|
|
11
|
+
- cron: '31 7 * * 3'
|
|
12
|
+
|
|
13
|
+
permissions:
|
|
14
|
+
actions: read
|
|
15
|
+
checks: write
|
|
16
|
+
contents: read
|
|
17
|
+
security-events: write
|
|
18
|
+
|
|
19
|
+
jobs:
|
|
20
|
+
analyze:
|
|
21
|
+
name: Analyze
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
|
|
24
|
+
strategy:
|
|
25
|
+
fail-fast: false
|
|
26
|
+
matrix:
|
|
27
|
+
language:
|
|
28
|
+
- TypeScript
|
|
29
|
+
|
|
30
|
+
steps:
|
|
31
|
+
- name: Checkout
|
|
32
|
+
id: checkout
|
|
33
|
+
uses: actions/checkout@v4
|
|
34
|
+
|
|
35
|
+
- name: Initialize CodeQL
|
|
36
|
+
id: initialize
|
|
37
|
+
uses: github/codeql-action/init@v3
|
|
38
|
+
with:
|
|
39
|
+
languages: ${{ matrix.language }}
|
|
40
|
+
source-root: src
|
|
41
|
+
|
|
42
|
+
- name: Autobuild
|
|
43
|
+
id: autobuild
|
|
44
|
+
uses: github/codeql-action/autobuild@v3
|
|
45
|
+
|
|
46
|
+
- name: Perform CodeQL Analysis
|
|
47
|
+
id: analyze
|
|
48
|
+
uses: github/codeql-action/analyze@v3
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# This workflow checks the statuses of cached dependencies used in this action
|
|
2
|
+
# with the help of the Licensed tool. If any licenses are invalid or missing,
|
|
3
|
+
# this workflow will fail. See: https://github.com/licensee/licensed
|
|
4
|
+
|
|
5
|
+
name: Licensed
|
|
6
|
+
|
|
7
|
+
on:
|
|
8
|
+
# Uncomment the below lines to run this workflow on pull requests and pushes
|
|
9
|
+
# to the default branch. This is useful for checking licenses before merging
|
|
10
|
+
# changes into the default branch.
|
|
11
|
+
# pull_request:
|
|
12
|
+
# branches:
|
|
13
|
+
# - main
|
|
14
|
+
# push:
|
|
15
|
+
# branches:
|
|
16
|
+
# - main
|
|
17
|
+
workflow_dispatch:
|
|
18
|
+
|
|
19
|
+
permissions:
|
|
20
|
+
contents: write
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
licensed:
|
|
24
|
+
name: Check Licenses
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
|
|
27
|
+
steps:
|
|
28
|
+
- name: Checkout
|
|
29
|
+
id: checkout
|
|
30
|
+
uses: actions/checkout@v4
|
|
31
|
+
|
|
32
|
+
- name: Setup Node.js
|
|
33
|
+
id: setup-node
|
|
34
|
+
uses: actions/setup-node@v4
|
|
35
|
+
with:
|
|
36
|
+
node-version-file: .node-version
|
|
37
|
+
cache: npm
|
|
38
|
+
|
|
39
|
+
- name: Install Dependencies
|
|
40
|
+
id: npm-ci
|
|
41
|
+
run: npm ci
|
|
42
|
+
|
|
43
|
+
- name: Setup Ruby
|
|
44
|
+
id: setup-ruby
|
|
45
|
+
uses: ruby/setup-ruby@v1
|
|
46
|
+
with:
|
|
47
|
+
ruby-version: ruby
|
|
48
|
+
|
|
49
|
+
- uses: licensee/setup-licensed@v1.3.2
|
|
50
|
+
with:
|
|
51
|
+
version: 4.x
|
|
52
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
53
|
+
|
|
54
|
+
# If this is a workflow_dispatch event, update the cached licenses.
|
|
55
|
+
- if: ${{ github.event_name == 'workflow_dispatch' }}
|
|
56
|
+
name: Update Licenses
|
|
57
|
+
id: update-licenses
|
|
58
|
+
run: licensed cache
|
|
59
|
+
|
|
60
|
+
# Then, commit the updated licenses to the repository.
|
|
61
|
+
- if: ${{ github.event_name == 'workflow_dispatch' }}
|
|
62
|
+
name: Commit Licenses
|
|
63
|
+
id: commit-licenses
|
|
64
|
+
run: |
|
|
65
|
+
git config --local user.email "licensed-ci@users.noreply.github.com"
|
|
66
|
+
git config --local user.name "licensed-ci"
|
|
67
|
+
git add .
|
|
68
|
+
git commit -m "Auto-update license files"
|
|
69
|
+
git push
|
|
70
|
+
|
|
71
|
+
# Last, check the status of the cached licenses.
|
|
72
|
+
- name: Check Licenses
|
|
73
|
+
id: check-licenses
|
|
74
|
+
run: licensed status
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
name: Lint Codebase
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
push:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
packages: read
|
|
14
|
+
statuses: write
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
lint:
|
|
18
|
+
name: Lint Codebase
|
|
19
|
+
runs-on: ubuntu-latest
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- name: Checkout
|
|
23
|
+
id: checkout
|
|
24
|
+
uses: actions/checkout@v4
|
|
25
|
+
with:
|
|
26
|
+
fetch-depth: 0
|
|
27
|
+
|
|
28
|
+
- name: Setup Node.js
|
|
29
|
+
id: setup-node
|
|
30
|
+
uses: actions/setup-node@v4
|
|
31
|
+
with:
|
|
32
|
+
node-version-file: .node-version
|
|
33
|
+
cache: npm
|
|
34
|
+
|
|
35
|
+
- name: Install Dependencies
|
|
36
|
+
id: install
|
|
37
|
+
run: npm ci
|
|
38
|
+
|
|
39
|
+
- name: Lint Codebase
|
|
40
|
+
id: super-linter
|
|
41
|
+
uses: super-linter/super-linter/slim@v7
|
|
42
|
+
env:
|
|
43
|
+
DEFAULT_BRANCH: main
|
|
44
|
+
FILTER_REGEX_EXCLUDE: dist/**/*
|
|
45
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
46
|
+
LINTER_RULES_PATH: ${{ github.workspace }}
|
|
47
|
+
VALIDATE_ALL_CODEBASE: true
|
|
48
|
+
VALIDATE_JAVASCRIPT_ES: false
|
|
49
|
+
VALIDATE_JAVASCRIPT_STANDARD: false
|
|
50
|
+
VALIDATE_JSCPD: false
|
|
51
|
+
VALIDATE_TYPESCRIPT_ES: false
|
|
52
|
+
VALIDATE_JSON: false
|
|
53
|
+
VALIDATE_TYPESCRIPT_STANDARD: false
|
package/.licensed.yml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# See: https://github.com/licensee/licensed/blob/main/docs/configuration.md
|
|
2
|
+
|
|
3
|
+
sources:
|
|
4
|
+
npm: true
|
|
5
|
+
|
|
6
|
+
allowed:
|
|
7
|
+
- apache-2.0
|
|
8
|
+
- bsd-2-clause
|
|
9
|
+
- bsd-3-clause
|
|
10
|
+
- isc
|
|
11
|
+
- mit
|
|
12
|
+
- cc0-1.0
|
|
13
|
+
- other
|
|
14
|
+
|
|
15
|
+
ignored:
|
|
16
|
+
npm:
|
|
17
|
+
# Used by Rollup.js when building in GitHub Actions
|
|
18
|
+
- '@rollup/rollup-linux-x64-gnu'
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "@actions/core"
|
|
3
|
+
version: 1.11.1
|
|
4
|
+
type: npm
|
|
5
|
+
summary: Actions core lib
|
|
6
|
+
homepage: https://github.com/actions/toolkit/tree/main/packages/core
|
|
7
|
+
license: mit
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE.md
|
|
10
|
+
text: |-
|
|
11
|
+
The MIT License (MIT)
|
|
12
|
+
|
|
13
|
+
Copyright 2019 GitHub
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
notices: []
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "@actions/exec"
|
|
3
|
+
version: 1.1.1
|
|
4
|
+
type: npm
|
|
5
|
+
summary: Actions exec lib
|
|
6
|
+
homepage: https://github.com/actions/toolkit/tree/main/packages/exec
|
|
7
|
+
license: mit
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE.md
|
|
10
|
+
text: |-
|
|
11
|
+
The MIT License (MIT)
|
|
12
|
+
|
|
13
|
+
Copyright 2019 GitHub
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
notices: []
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "@actions/http-client"
|
|
3
|
+
version: 2.2.3
|
|
4
|
+
type: npm
|
|
5
|
+
summary: Actions Http Client
|
|
6
|
+
homepage: https://github.com/actions/toolkit/tree/main/packages/http-client
|
|
7
|
+
license: other
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE
|
|
10
|
+
text: |
|
|
11
|
+
Actions Http Client for Node.js
|
|
12
|
+
|
|
13
|
+
Copyright (c) GitHub, Inc.
|
|
14
|
+
|
|
15
|
+
All rights reserved.
|
|
16
|
+
|
|
17
|
+
MIT License
|
|
18
|
+
|
|
19
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
20
|
+
associated documentation files (the "Software"), to deal in the Software without restriction,
|
|
21
|
+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
22
|
+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
23
|
+
subject to the following conditions:
|
|
24
|
+
|
|
25
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
28
|
+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
29
|
+
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
30
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
31
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
32
|
+
notices: []
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "@actions/io"
|
|
3
|
+
version: 1.1.3
|
|
4
|
+
type: npm
|
|
5
|
+
summary: Actions io lib
|
|
6
|
+
homepage: https://github.com/actions/toolkit/tree/main/packages/io
|
|
7
|
+
license: mit
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE.md
|
|
10
|
+
text: |-
|
|
11
|
+
The MIT License (MIT)
|
|
12
|
+
|
|
13
|
+
Copyright 2019 GitHub
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
notices: []
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: "@fastify/busboy"
|
|
3
|
+
version: 2.1.1
|
|
4
|
+
type: npm
|
|
5
|
+
summary: A streaming parser for HTML form data for node.js
|
|
6
|
+
homepage:
|
|
7
|
+
license: mit
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE
|
|
10
|
+
text: |-
|
|
11
|
+
Copyright Brian White. All rights reserved.
|
|
12
|
+
|
|
13
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
14
|
+
of this software and associated documentation files (the "Software"), to
|
|
15
|
+
deal in the Software without restriction, including without limitation the
|
|
16
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
17
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
18
|
+
furnished to do so, subject to the following conditions:
|
|
19
|
+
|
|
20
|
+
The above copyright notice and this permission notice shall be included in
|
|
21
|
+
all copies or substantial portions of the Software.
|
|
22
|
+
|
|
23
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
24
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
25
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
26
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
27
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
28
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
29
|
+
IN THE SOFTWARE.
|
|
30
|
+
notices: []
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: tunnel
|
|
3
|
+
version: 0.0.6
|
|
4
|
+
type: npm
|
|
5
|
+
summary: Node HTTP/HTTPS Agents for tunneling proxies
|
|
6
|
+
homepage: https://github.com/koichik/node-tunnel/
|
|
7
|
+
license: mit
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE
|
|
10
|
+
text: |
|
|
11
|
+
The MIT License (MIT)
|
|
12
|
+
|
|
13
|
+
Copyright (c) 2012 Koichi Kobayashi
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
17
|
+
in the Software without restriction, including without limitation the rights
|
|
18
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
19
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
20
|
+
furnished to do so, subject to the following conditions:
|
|
21
|
+
|
|
22
|
+
The above copyright notice and this permission notice shall be included in
|
|
23
|
+
all copies or substantial portions of the Software.
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
29
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
30
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
31
|
+
THE SOFTWARE.
|
|
32
|
+
- sources: README.md
|
|
33
|
+
text: Licensed under the [MIT](https://github.com/koichik/node-tunnel/blob/master/LICENSE)
|
|
34
|
+
license.
|
|
35
|
+
notices: []
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: undici
|
|
3
|
+
version: 5.28.5
|
|
4
|
+
type: npm
|
|
5
|
+
summary: An HTTP/1.1 client, written from scratch for Node.js
|
|
6
|
+
homepage: https://undici.nodejs.org
|
|
7
|
+
license: mit
|
|
8
|
+
licenses:
|
|
9
|
+
- sources: LICENSE
|
|
10
|
+
text: |
|
|
11
|
+
MIT License
|
|
12
|
+
|
|
13
|
+
Copyright (c) Matteo Collina and Undici contributors
|
|
14
|
+
|
|
15
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
17
|
+
in the Software without restriction, including without limitation the rights
|
|
18
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
19
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
20
|
+
furnished to do so, subject to the following conditions:
|
|
21
|
+
|
|
22
|
+
The above copyright notice and this permission notice shall be included in all
|
|
23
|
+
copies or substantial portions of the Software.
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
29
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
30
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31
|
+
SOFTWARE.
|
|
32
|
+
- sources: README.md
|
|
33
|
+
text: MIT
|
|
34
|
+
notices: []
|