{"id":5806867,"name":"tddschn/install-easygraph","ecosystem":"actions","description":"Action that build and install python-easygraph from source (https://github.com/easy-graph/Easy-Graph)","homepage":"https://github.com/marketplace/actions/install-easygraph","licenses":null,"normalized_licenses":[],"repository_url":"https://github.com/tddschn/install-easygraph","keywords_array":["action","easygraph","github-actions","python","ubuntu-latest"],"namespace":"tddschn","versions_count":8,"first_release_published_at":"2022-08-22T15:11:06.000Z","latest_release_published_at":"2023-03-05T15:12:11.000Z","latest_release_number":"v0.6.0","last_synced_at":"2026-05-15T14:46:50.472Z","created_at":"2023-01-04T16:33:27.553Z","updated_at":"2026-05-15T14:46:50.473Z","registry_url":"https://github.com/tddschn/install-easygraph","install_command":null,"documentation_url":null,"metadata":{"name":"Install EasyGraph","description":"Action that build and install python-easygraph from source (https://github.com/easy-graph/Easy-Graph)","branding":{"icon":"download-cloud","color":"green"},"inputs":{"repository":{"description":"Easy-Graph repository, e.g., your fork","required":false,"default":"easy-graph/Easy-Graph"},"ref":{"description":"Branch, tag or commit to checkout for Easy-Graph","required":false,"default":"pybind11"},"install-pytorch":{"description":"Install PyTorch, an optional dependency of Easy-Graph","required":false,"default":"true"},"install-lxml":{"description":"Install lxml, an optional dependency for easygraph (installation would takes longer)","required":false,"default":"false"},"use-cached-build":{"default":"true","description":"Use cached build if available","required":false},"python-package-manager-install-command":{"default":"python -m pip install","description":"The python package manager to use","required":false}},"outputs":{"site-packages-path":{"description":"python site-packages path","value":"${{ steps.get-eg-install-location.outputs.site-packages-path }}"},"eg-egg-dir-path":{"description":"easygraph egg directory path","value":"${{ steps.get-eg-install-location.outputs.eg-egg-dir-path }}"}},"runs":{"using":"composite","steps":[{"name":"Create a temporary dir for checking out easygraph and tddschn/install-easygraph","id":"tempdir","run":"echo '::group::Creating temp dir'\nif [[ \"${{ runner.os }}\" == \"macOS\" ]]; then\n    echo '::group::macOS detected. Installing gmktemp and aliasing it.'\n    brew install coreutils\n\n    # https://github.com/actions/toolkit/issues/766\n    shopt -s expand_aliases\n\n    alias mktemp='gmktemp'\n    echo '::endgroup::'\n    \nfi\nEG_TMP_DIR=\"$(mktemp --directory)\"\nEG_TMP_DIR_RELATIVE=\"$(echo \"${EG_TMP_DIR}\" | cut -c2-)\"\nACTION_TMP_DIR=\"$(mktemp --directory)\"\nACTION_TMP_DIR_RELATIVE=\"$(echo \"${ACTION_TMP_DIR}\" | cut -c2-)\"\necho \"EG_TMP_DIR: $EG_TMP_DIR\"\necho \"ACTION_TMP_DIR: $ACTION_TMP_DIR\"\necho \"tmp-dir=$EG_TMP_DIR_RELATIVE\" \u003e\u003e $GITHUB_OUTPUT\necho \"action-tmp-dir=$ACTION_TMP_DIR_RELATIVE\" \u003e\u003e $GITHUB_OUTPUT\necho \"action-tmp-dir-absolute=$ACTION_TMP_DIR\" \u003e\u003e $GITHUB_OUTPUT\necho 'moving temp dirs under workspace'\nmkdir -p -v \"$GITHUB_WORKSPACE/tmp\"\nmv -v \"$EG_TMP_DIR\" \"$GITHUB_WORKSPACE/tmp\"\nmv -v \"$ACTION_TMP_DIR\" \"$GITHUB_WORKSPACE/tmp\"\necho '::endgroup::'\n","shell":"bash"},{"name":"Checkout tddschn/install-easygraph","uses":"actions/checkout@v3","with":{"path":"${{ steps.tempdir.outputs.action-tmp-dir }}","repository":"tddschn/install-easygraph"}},{"name":"Get eg installation location","shell":"python","id":"get-eg-install-location","run":"import sys, os\nfrom pathlib import Path\naction_dir = '${{ github.workspace }}/${{ steps.tempdir.outputs.action-tmp-dir}}'\nsys.path.insert(0, action_dir)\nfrom utils import get_eg_egg_dir_path, set_output, get_site_packages_path, get_sys_version_sha1\neg_egg_dir_path= get_eg_egg_dir_path('${{ inputs.repository }}', '${{ inputs.ref }}')\nset_output('site-packages-path', get_site_packages_path())\nset_output('eg-egg-dir-path', eg_egg_dir_path)\nset_output('python-version', sys.version)\nset_output('python-version-sha1', get_sys_version_sha1())\n"},{"name":"Using cache on site-packages/*","if":"inputs.use-cached-build == 'true'","uses":"actions/cache@v3","id":"cache","with":{"key":"eg-commit-repo-${{ inputs.repository }}-ref-${{ inputs.ref }}-@python-version-sha1-${{ steps.get-eg-install-location.outputs.python-version-sha1 }}","path":"${{ steps.get-eg-install-location.outputs.site-packages-path }}/*\n"}},{"name":"Append eg egg dir to site-packages on cache hit","if":"inputs.use-cached-build != 'true' \u0026\u0026 steps.cache.outputs.cache-hit == 'true'","shell":"python","run":"print('::group::Appending eg egg dir to site-packages')\nimport sys, os\naction_dir = '${{ github.workspace }}/${{ steps.tempdir.outputs.action-tmp-dir}}'\nsys.path.insert(0, action_dir)\nfrom utils import append_eg_egg_dir_rel_path_to_easy_install_pth\nappend_eg_egg_dir_rel_path_to_easy_install_pth('${{ inputs.repository }}', '${{ inputs.ref }}')\nprint('::endgroup::')\n"},{"name":"checkout Easy-Graph","uses":"actions/checkout@v3","with":{"repository":"${{ inputs.repository }}","ref":"${{ inputs.ref }}","path":"${{ steps.tempdir.outputs.tmp-dir }}"}},{"name":"install easygraph dependencies (prior to setup.py)","if":"inputs.use-cached-build != 'true' || steps.cache.outputs.cache-hit != 'true'","shell":"bash","run":"echo '::group::Installing dependencies (prior to setup.py)'\npython -m pip install pytest\npython -m pip install Pillow\npython -m pip install kiwisolver\npython -m pip install gensim\nif [[ \"${{ inputs.install-lxml }}\" == \"true\" ]]; then\n  python -m pip install lxml \nfi\nif [[ \"${{ inputs.install-pytorch }}\" == \"true\" ]]; then\n  python -m pip install torch\nfi\necho '::endgroup::'\n"},{"name":"install remaining easygraph dependencies (${{ inputs.python-package-manager-install-command }})","if":"inputs.use-cached-build != 'true' || steps.cache.outputs.cache-hit != 'true'","shell":"bash","run":"echo '::group::Installing remaining dependencies'\n${{ inputs.python-package-manager-install-command }} numpy pandas matplotlib statsmodels\n${{ inputs.python-package-manager-install-command }} tqdm joblib six scikit-learn tensorflow\n${{ inputs.python-package-manager-install-command }} scipy progressbar progressbar33\n${{ inputs.python-package-manager-install-command }} nose\necho '::endgroup::'\n"},{"name":"prepping for building easygraph's cpp binding (pybind11)","if":"(inputs.use-cached-build != 'true' || steps.cache.outputs.cache-hit != 'true')","shell":"bash","working-directory":"${{ steps.tempdir.outputs.tmp-dir }}","id":"prepping-for-building-pybind11","run":"echo '::group::prepping for building easygraph'\"'\"'s cpp binding (pybind11)'\npip install pybind11\necho '::endgroup::'\n"},{"name":"build easygraph's cpp binding (pybind11)","if":"(inputs.use-cached-build != 'true' || steps.cache.outputs.cache-hit != 'true')","shell":"bash","working-directory":"${{ steps.tempdir.outputs.tmp-dir }}","id":"build-pybind11","run":"echo '::group::building easygraph'\"'\"'s cpp binding (pybind11)'\npython setup.py build_ext\necho '::endgroup::'\n"},{"name":"install easygraph","if":"inputs.use-cached-build != 'true' || steps.cache.outputs.cache-hit != 'true'","shell":"bash","env":{"BOOST_VERSION":"${{ inputs.boost-version }}"},"working-directory":"${{ steps.tempdir.outputs.tmp-dir }}","run":"echo '::group::Installing easygraph'\npython setup.py install\necho '::endgroup::'\n"},{"name":"Test easygraph installation","shell":"python","run":"print('::group::Testing easygraph installation')\n\ntry:\n    import easygraph as eg\n    import cpp_easygraph as ceg\n    print(f'eg: {eg}')\n    print(f'ceg: {ceg}')\nexcept ModuleNotFoundError as e:\n    import os\n    from pathlib import Path\n    site_packages_path = '${{ steps.get-eg-install-location.outputs.site-packages-path }}'\n    eg_egg_dir_path = '${{ steps.get-eg-install-location.outputs.eg-egg-dir-path }}'\n    print(f'site_packages_path: {site_packages_path}')\n    print(f'eg_egg_dir_path: {eg_egg_dir_path}')\n    print('dir listing of site_packages_path:')\n    print(os.listdir(site_packages_path))\n    print('dir listing of eg_egg_dir_path:')\n    print(os.listdir(eg_egg_dir_path))\n    raise e\n\nprint('::endgroup::')\n"},{"name":"Remove temp dirs","if":"${{ always() }}","run":"echo '::group::Removing temp dir'\nif [[ -d '$GITHUB_WORKSPACE/tmp' ]]; then\n  sudo rm -rf \"$GITHUB_WORKSPACE/tmp\"\nfi\necho '::endgroup::'\n","shell":"bash"}]},"default_branch":"master","path":null},"repo_metadata":{"id":57912900,"uuid":"527588763","full_name":"tddschn/install-easygraph","owner":"tddschn","description":"Action that build and install python-easygraph from source","archived":false,"fork":false,"pushed_at":"2023-04-19T05:37:07.000Z","size":146,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-29T21:55:54.655Z","etag":null,"topics":["action","easygraph","github-actions","python","ubuntu-latest"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/install-easygraph","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tddschn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-22T13:58:24.000Z","updated_at":"2023-03-08T22:54:14.000Z","dependencies_parsed_at":"2025-01-17T04:46:45.929Z","dependency_job_id":"29c9cec8-5e98-4fa7-93ee-6a16e76cb4a0","html_url":"https://github.com/tddschn/install-easygraph","commit_stats":{"total_commits":121,"total_committers":1,"mean_commits":121.0,"dds":0.0,"last_synced_commit":"77b13b8228cfd0ee1adeb3346af577e51bdbda9c"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/tddschn/install-easygraph","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tddschn","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/sbom","scorecard":{"id":870991,"data":{"date":"2025-08-11","repo":{"name":"github.com/tddschn/install-easygraph","commit":"0c88caacd6635d80826e55d29de820bfea024728"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.1,"checks":[{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":0,"reason":"Found 0/30 approved changesets -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-dummy.yaml:28: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-dummy.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-dummy.yaml:33: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-dummy.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-dummy.yaml:46: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-dummy.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-installation.yaml:8: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-installation.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-installation.yaml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-installation.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-macos-dummy.yaml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-macos-dummy.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-macos-dummy.yaml:29: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-macos-dummy.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-macos-dummy.yaml:48: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-macos-dummy.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-macos.yaml:44: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-macos.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-macos.yaml:50: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-macos.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test-macos.yaml:71: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test-macos.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:46: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yaml:51: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test.yaml/master?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test.yaml:64: update your workflow using https://app.stepsecurity.io/secureworkflow/tddschn/install-easygraph/test.yaml/master?enable=pin","Info:   0 out of   5 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   9 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/test-dummy.yaml:1","Warn: no topLevel permission defined: .github/workflows/test-installation.yaml:1","Warn: no topLevel permission defined: .github/workflows/test-macos-dummy.yaml:1","Warn: no topLevel permission defined: .github/workflows/test-macos.yaml:1","Warn: no topLevel permission defined: .github/workflows/test.yaml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"SAST","score":0,"reason":"no SAST tool detected","details":["Warn: no pull requests merged into dev branch"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"License","score":0,"reason":"license file not detected","details":["Warn: project does not have a license file"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Branch-Protection","score":0,"reason":"branch protection not enabled on development/release branches","details":["Warn: branch protection not enabled for branch 'master'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}}]},"last_synced_at":"2025-08-24T04:12:34.736Z","repository_id":57912900,"created_at":"2025-08-24T04:12:34.736Z","updated_at":"2025-08-24T04:12:34.736Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002373,"owners_count":26083356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"tddschn","name":"T","uuid":"45612704","kind":"user","description":"","email":"","website":"http://d.teddysc.me/rr","location":"http://d.teddysc.me/aa","twitter":null,"company":"@teddy-co ","icon_url":"https://avatars.githubusercontent.com/u/45612704?v=4","repositories_count":110,"last_synced_at":"2025-09-29T21:52:11.999Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/tddschn","funding_links":["https://github.com/sponsors/tddschn"],"total_stars":228,"followers":109,"following":437,"created_at":"2022-11-15T05:57:25.406Z","updated_at":"2025-09-29T21:52:11.999Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tddschn","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tddschn/repositories"},"tags":[{"name":"v0.6.0","sha":"77b13b8228cfd0ee1adeb3346af577e51bdbda9c","kind":"commit","published_at":"2023-03-05T15:12:11.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.6.0","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.6.0","dependencies_parsed_at":"2023-06-02T01:12:28.405Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.6.0/manifests"},{"name":"v0.5.0","sha":"c571d381967abbc95c3c9c7d97a5cc5cca76a908","kind":"commit","published_at":"2022-11-15T07:50:37.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.5.0","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.5.0","dependencies_parsed_at":"2023-05-31T20:00:58.688Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.5.0/manifests"},{"name":"v0.4.0","sha":"36e5729e9f62778bd08c4cbb66a7af020d4c224f","kind":"commit","published_at":"2022-09-16T13:06:16.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.4.0","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.4.0","dependencies_parsed_at":"2023-05-31T20:00:59.507Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.4.0/manifests"},{"name":"v0.3.1","sha":"144efe1ec82cb6fc324dd89986939beedf56d3d3","kind":"commit","published_at":"2022-08-26T03:55:19.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.3.1","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.3.1","dependencies_parsed_at":"2023-05-31T08:01:25.195Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.3.1/manifests"},{"name":"v0.3.0","sha":"b0225b4783de3a69306d30c9c5bdd1287a02e010","kind":"commit","published_at":"2022-08-25T07:09:52.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.3.0","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.3.0","dependencies_parsed_at":"2023-05-31T08:01:25.743Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.3.0/manifests"},{"name":"v0.2.0","sha":"98d78d37101c18296fc2917a2f050f3fb26bdece","kind":"commit","published_at":"2022-08-23T05:19:06.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.2.0","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.2.0","dependencies_parsed_at":"2023-05-31T08:01:26.122Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.2.0/manifests"},{"name":"v0.1.1","sha":"44d4857891e6eb4b4e4e91b765eedf83266abbae","kind":"commit","published_at":"2022-08-22T15:31:03.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.1.1","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.1.1","dependencies_parsed_at":"2023-05-31T08:01:26.544Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.1.1/manifests"},{"name":"v0.1.0","sha":"699aea5cd6561819ea0a6883a6ed22ec2b0b10bf","kind":"commit","published_at":"2022-08-22T15:11:06.000Z","download_url":"https://codeload.github.com/tddschn/install-easygraph/tar.gz/v0.1.0","html_url":"https://github.com/tddschn/install-easygraph/releases/tag/v0.1.0","dependencies_parsed_at":"2023-05-31T08:01:26.945Z","dependency_job_id":null,"purl":"pkg:github/tddschn/install-easygraph@v0.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/tags/v0.1.0/manifests"}]},"repo_metadata_updated_at":"2025-10-11T15:06:52.987Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":3,"rankings":{"downloads":null,"dependent_repos_count":18.04468388527967,"dependent_packages_count":0.0,"stargazers_count":22.912375217873553,"forks_count":35.17033750594201,"docker_downloads_count":null,"average":19.031849152273807},"purl":"pkg:githubactions/tddschn/install-easygraph","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/tddschn/install-easygraph","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/tddschn/install-easygraph","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/tddschn/install-easygraph/dependencies","status":null,"funding_links":["https://github.com/sponsors/tddschn"],"critical":null,"issue_metadata":{"last_synced_at":"2025-03-06T19:43:25.148Z","issues_count":0,"pull_requests_count":0,"avg_time_to_close_issue":null,"avg_time_to_close_pull_request":null,"issues_closed_count":0,"pull_requests_closed_count":0,"pull_request_authors_count":0,"issue_authors_count":0,"avg_comments_per_issue":null,"avg_comments_per_pull_request":null,"merged_pull_requests_count":0,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":0,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":0,"past_year_avg_comments_per_issue":null,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Finstall-easygraph/issues","maintainers":[],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/tddschn%2Finstall-easygraph/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/tddschn%2Finstall-easygraph/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/tddschn%2Finstall-easygraph/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/tddschn%2Finstall-easygraph/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/tddschn%2Finstall-easygraph/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/tddschn%2Finstall-easygraph/codemeta","maintainers":[]}