{"id":5801591,"name":"game-ci/unity-builder","ecosystem":"actions","description":"Build Unity projects for different platforms.","homepage":"https://github.com/marketplace/actions/unity-builder","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/game-ci/unity-builder","keywords_array":["actions","build","ci","game-ci","github","hacktoberfest","unity","unity-actions","unity-builder"],"namespace":"game-ci","versions_count":77,"first_release_published_at":"2019-12-01T01:22:40.000Z","latest_release_published_at":"2026-08-29T01:11:01.000Z","latest_release_number":"v6.0.0","last_synced_at":"2026-09-21T00:11:08.487Z","created_at":"2023-01-04T13:14:51.594Z","updated_at":"2026-09-21T22:17:12.307Z","registry_url":"https://github.com/game-ci/unity-builder","install_command":null,"documentation_url":null,"metadata":{"name":"Unity - Builder","author":"Webber Takken \u003cwebber@takken.io\u003e","description":"Build Unity projects for different platforms.","inputs":{"targetPlatform":{"required":true,"default":"","description":"Platform that the build should target."},"unityVersion":{"required":false,"default":"auto","description":"Version of unity to use for building the project. Use \"auto\" to get from your ProjectSettings/ProjectVersion.txt. A value other than \"auto\" is currently ignored - the underlying game-ci CLI always detects the version from the checked-out project and has no override flag yet."},"cliVersion":{"required":false,"default":"latest","description":"Release tag of the game-ci/cli binary to install and run (e.g. \"v0.1.0\"). Defaults to the latest release; pin this for reproducible builds."},"githubToken":{"required":false,"default":"${{ github.token }}","description":"Token used to authenticate the GitHub API call that resolves cliVersion: latest to a concrete release tag. Defaults to the token GitHub Actions provides for every run automatically - no need to set this unless you have a reason to override it."},"customImage":{"required":false,"default":"","description":"Specific docker image that should be used for building the project"},"projectPath":{"required":false,"default":"","description":"Path to the project to be built, relative to the repository root."},"buildProfile":{"required":false,"default":"","description":"Path to the build profile to activate, relative to the project root."},"buildName":{"required":false,"default":"","description":"Name of the build. Should not include a file extension."},"buildsPath":{"required":false,"default":"","description":"Path where the builds should be stored."},"buildMethod":{"required":false,"default":"","description":"Path to a Namespace.Class.StaticMethod to run to perform the build."},"manualExit":{"required":false,"default":"","description":"Suppresses `-quit`. Exit your build method using `EditorApplication.Exit(0)` instead."},"enableGpu":{"required":false,"default":"","description":"Launches unity without specifying `-nographics`."},"customParameters":{"required":false,"default":"","description":"Custom parameters to configure the build."},"useHostNetwork":{"required":false,"default":false,"description":"Initialises Docker using the host network. (Linux only)"},"versioning":{"required":false,"default":"Semantic","description":"The versioning scheme to use when building the project"},"version":{"required":false,"default":"","description":"The version, when used with the \"Custom\" versioning scheme"},"androidVersionCode":{"required":false,"default":"","description":"The android versionCode"},"androidExportType":{"required":false,"default":"androidPackage","description":"The android export type. Should be androidPackage for apk, androidAppBundle for aab, or androidStudioProject for an android studio project."},"androidKeystoreName":{"required":false,"default":"","description":"The android keystoreName"},"androidKeystoreBase64":{"required":false,"default":"","description":"The base64 contents of the android keystore file"},"androidKeystorePass":{"required":false,"default":"","description":"The android keystorePass"},"androidKeyaliasName":{"required":false,"default":"","description":"The android keyaliasName"},"androidKeyaliasPass":{"required":false,"default":"","description":"The android keyaliasPass"},"androidTargetSdkVersion":{"required":false,"default":"","description":"The android target API level."},"androidSymbolType":{"required":false,"default":"none","description":"The android symbol type to export. Should be \"none\", \"public\" or \"debugging\"."},"sshAgent":{"required":false,"default":"","description":"SSH Agent path to forward to the container"},"sshPublicKeysDirectoryPath":{"required":false,"default":"","description":"Path to a directory containing SSH public keys to forward to the container."},"gitPrivateToken":{"required":false,"default":"","description":"Github private token to pull from github"},"providerStrategy":{"default":"local","required":false,"description":"Build execution strategy. Use \"local\" (the default) for Docker/Mac builds driven by this action itself, or \"local-system\" to build natively on the host with no Docker at all (game-ci/orchestrator's own local-system provider, invoked via `game-ci orchestrate`) - useful for self-hosted runners that already have Unity installed. For remote builds (aws, k8s, etc.), install @game-ci/orchestrator and use the game-ci/orchestrator action which declares its own inputs."},"runAsHostUser":{"required":false,"default":"false","description":"Whether to run as a user that matches the host system or the default root container user. Only applicable to Linux hosts and containers. This is useful for fixing permission errors on Self-Hosted runners."},"chownFilesTo":{"required":false,"default":"","description":"User and optionally group (user or user:group or uid:gid) to give ownership of the resulting build artifacts"},"dockerCpuLimit":{"required":false,"default":"","description":"Number of CPU cores to assign the docker container. Defaults to all available cores on all platforms."},"dockerMemoryLimit":{"required":false,"default":"","description":"Amount of memory to assign the docker container. Defaults to 95% of total system memory rounded down to the nearest megabyte on Linux and 80% on Windows. On unrecognized platforms, defaults to 75% of total system memory. To manually specify a value, use the format \u003cnumber\u003e\u003cunit\u003e, where unit is either m or g. ie: 512m = 512 megabytes"},"dockerIsolationMode":{"required":false,"default":"default","description":"Isolation mode to use for the docker container. Can be one of process, hyperv, or default. Default will pick the default mode as described by Microsoft where server versions use process and desktop versions use hyperv. Only applicable on Windows"},"containerRegistryRepository":{"required":false,"default":"unityci/editor","description":"Container registry and repository to pull image from. Only applicable if customImage is not set."},"containerRegistryImageVersion":{"required":false,"default":"3","description":"Container registry image version. Only applicable if customImage is not set."},"allowDirtyBuild":{"required":false,"default":"","description":"Allows the branch of the build to be dirty, and still generate the build."},"cacheUnityInstallationOnMac":{"default":"false","required":false,"description":"Whether to cache the Unity hub and editor installation on MacOS"},"unityHubVersionOnMac":{"default":"","required":false,"description":"The version of Unity Hub to install on MacOS (e.g. 3.4.0). Defaults to latest available on brew if empty string or nothing is specified."},"unityLicensingServer":{"default":"","required":false,"description":"The Unity licensing server address to use for activating Unity."},"dockerWorkspacePath":{"default":"/github/workspace","required":false,"description":"The path to mount the workspace inside the docker container. For windows, leave out the drive letter. For example c:/github/workspace should be defined as /github/workspace"},"skipActivation":{"default":"false","required":false,"description":"Skip the activation/deactivation of Unity. This assumes Unity is already activated. Also honoured by providerStrategy=local-system, for self-hosted runners with an already-licensed, long-lived Unity Hub session."},"linux64RemoveExecutableExtension":{"default":"false","required":false,"description":"When building for StandaloneLinux64, remove the default file extension of `.x86_64`. Set to true to restore the extensionless behavior from v4."},"engineLaunchWrapper":{"default":"","required":false,"description":"Only applicable to providerStrategy=local-system. Command to prefix the Unity engine process invocation with (e.g. a self-hosted runner's own launch-serialization lock). Applied precisely around the engine launch itself, not the surrounding build step. Empty by default."},"enableBuildRetry":{"default":"false","required":false,"description":"Only applicable to providerStrategy=local-system. Enable automatic classify/decide/retry recovery for failed Unity builds (budget-gated). Default off: a single failed attempt still throws exactly as before - retry can back up or wipe the Library folder as a recovery action, which is a meaningful behavior change to opt into."},"localCacheEnabled":{"default":"false","required":false,"description":"Only applicable to providerStrategy=local-system. Enable local filesystem caching of the Unity Library folder and/or .git/lfs between builds on the same self-hosted runner. Off by default."},"localCacheLibrary":{"default":"true","required":false,"description":"Only applicable to providerStrategy=local-system, and only takes effect when localCacheEnabled=true. Cache the engine Library folder locally."},"localCacheLfs":{"default":"false","required":false,"description":"Only applicable to providerStrategy=local-system, and only takes effect when localCacheEnabled=true. Cache .git/lfs locally."},"localCacheMode":{"default":"tar","required":false,"description":"Only applicable to providerStrategy=local-system, and only takes effect when localCacheEnabled=true. Local cache save/restore mode: \"tar\", \"move-directory\", or \"copy-directory\"."}},"outputs":{"volume":{"description":"The Persistent Volume (PV) where the build artifacts have been stored by Kubernetes"},"buildVersion":{"description":"The generated version used for the Unity build"},"androidVersionCode":{"description":"The generated versionCode used for the Android Unity build"},"engineExitCode":{"description":"Returns the exit code from the build scripts. This code is 0 if the build was successful. If there was an error during activation, the code is from the activation step. If activation is successful, the code is from the project build step."}},"branding":{"icon":"box","color":"gray-dark"},"runs":{"using":"node24","main":"dist/index.js"},"default_branch":"main","path":null},"repo_metadata":{"id":38290097,"uuid":"225049270","full_name":"game-ci/unity-builder","owner":"game-ci","description":"Build Unity projects for different platforms","archived":false,"fork":false,"pushed_at":"2026-09-16T15:25:19.000Z","size":254332,"stargazers_count":1092,"open_issues_count":64,"forks_count":313,"subscribers_count":12,"default_branch":"main","last_synced_at":"2026-09-19T17:28:05.356Z","etag":null,"topics":["actions","build","ci","game-ci","github","hacktoberfest","unity","unity-actions","unity-builder"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/unity-builder","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/game-ci.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"claude":null,"gemini":null,"cursor":null,"copilot":null,"dco":null,"cla":null,"disclosure":null},"funding":{"github":"game-ci","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-11-30T17:50:35.000Z","updated_at":"2026-09-18T09:23:16.000Z","dependencies_parsed_at":"2026-09-04T18:35:52.595Z","dependency_job_id":null,"html_url":"https://github.com/game-ci/unity-builder","commit_stats":{"total_commits":443,"total_committers":53,"mean_commits":8.358490566037736,"dds":0.5011286681715575,"last_synced_commit":"83c85328dd491a4268b41f1aae9de279e1fe7be5"},"previous_names":["webbertakken/unity-builder"],"tags_count":77,"template":false,"template_full_name":null,"purl":"pkg:github/game-ci/unity-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/game-ci","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/sbom","scorecard":{"id":417787,"data":{"date":"2025-08-11","repo":{"name":"github.com/game-ci/unity-builder","commit":"c6c82361525d6219c336d24dedabd7ebbf219986"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.8,"checks":[{"name":"Code-Review","score":10,"reason":"all changesets reviewed","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":"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":"Maintained","score":9,"reason":"8 commit(s) and 3 issue activity found in the last 90 days -- score normalized to 9","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":"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":"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/activation.yml:1","Warn: no topLevel permission defined: .github/workflows/build-tests-mac.yml:1","Warn: no topLevel permission defined: .github/workflows/build-tests-ubuntu.yml:1","Warn: no topLevel permission defined: .github/workflows/build-tests-windows.yml:1","Warn: no topLevel permission defined: .github/workflows/cats.yml:1","Warn: no topLevel permission defined: .github/workflows/cleanup.yml:1","Warn: topLevel 'checks' permission set to 'write': .github/workflows/cloud-runner-async-checks.yml:12","Warn: topLevel 'checks' permission set to 'write': .github/workflows/cloud-runner-ci-pipeline.yml:13","Info: topLevel 'contents' permission set to 'read': .github/workflows/cloud-runner-ci-pipeline.yml:14","Warn: topLevel 'actions' permission set to 'write': .github/workflows/cloud-runner-ci-pipeline.yml:15","Warn: no topLevel permission defined: .github/workflows/integrity-check.yml:1","Warn: no topLevel permission defined: .github/workflows/versioning.yml: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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"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":"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":-1,"reason":"internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration","details":null,"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"}},{"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":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/activation.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/activation.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/activation.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/activation.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-mac.yml:32: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-mac.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-mac.yml:39: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-mac.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-mac.yml:75: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-mac.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/build-tests-ubuntu.yml:105: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-ubuntu.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-ubuntu.yml:110: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-ubuntu.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-ubuntu.yml:117: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-ubuntu.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-ubuntu.yml:201: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-ubuntu.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-windows.yml:42: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-windows.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-windows.yml:49: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-windows.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/build-tests-windows.yml:141: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/build-tests-windows.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/cats.yml:14: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cats.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/cleanup.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cleanup.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cleanup.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cleanup.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cleanup.yml:22: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cleanup.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:59: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:63: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:102: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:107: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:141: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:145: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:187: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:210: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:223: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/cloud-runner-ci-pipeline.yml:224: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/cloud-runner-ci-pipeline.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/integrity-check.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/integrity-check.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/integrity-check.yml:20: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/integrity-check.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/versioning.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/game-ci/unity-builder/versioning.yml/main?enable=pin","Warn: downloadThenRun not pinned by hash: .github/workflows/integrity-check.yml:27","Info:   0 out of  21 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   8 third-party GitHubAction dependencies pinned","Info:   0 out of   1 downloadThenRun 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":"SAST","score":1,"reason":"SAST tool is not run on all commits -- score normalized to 1","details":["Warn: 3 commits out of 30 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}},{"name":"Vulnerabilities","score":0,"reason":"23 existing vulnerabilities detected","details":["Warn: Project is vulnerable to: GHSA-968p-4wvh-cqc8","Warn: Project is vulnerable to: GHSA-h5c3-5r3r-rr8q","Warn: Project is vulnerable to: GHSA-rmvr-2pp2-xj38","Warn: Project is vulnerable to: GHSA-xx4v-prfh-6cgc","Warn: Project is vulnerable to: GHSA-v6h2-p8h4-qcjw","Warn: Project is vulnerable to: GHSA-grv7-fg5c-xmjg","Warn: Project is vulnerable to: GHSA-3xgq-45jj-v275","Warn: Project is vulnerable to: GHSA-fjxv-7rqg-78g4","Warn: Project is vulnerable to: GHSA-pfrx-2q88-qq97","Warn: Project is vulnerable to: GHSA-hhhv-q57g-882q","Warn: Project is vulnerable to: GHSA-pppg-cpfq-h7wr","Warn: Project is vulnerable to: GHSA-hw8r-x6gr-5gjp","Warn: Project is vulnerable to: GHSA-952p-6rrq-rcjv","Warn: Project is vulnerable to: GHSA-mwcw-c2x4-8c55","Warn: Project is vulnerable to: GHSA-p8p7-x288-28g6","Warn: Project is vulnerable to: GHSA-f5x3-32g6-xq36","Warn: Project is vulnerable to: GHSA-52f5-9888-hmc6","Warn: Project is vulnerable to: GHSA-72xf-g2v4-qvf3","Warn: Project is vulnerable to: GHSA-9qxr-qj54-h672","Warn: Project is vulnerable to: GHSA-m4v8-wqvr-p9f7","Warn: Project is vulnerable to: GHSA-c76h-2ccp-4975","Warn: Project is vulnerable to: GHSA-cxrh-j4jr-qwg3","Warn: Project is vulnerable to: GHSA-3h5v-q93c-6h6q"],"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}}]},"last_synced_at":"2025-08-19T00:22:06.080Z","repository_id":38290097,"created_at":"2025-08-19T00:22:06.081Z","updated_at":"2025-08-19T00:22:06.081Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":341189360,"owners_count":37494049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-08-22T15:14:58.755Z","status":"online","status_checked_at":"2026-09-19T02:00:07.094Z","response_time":73,"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":"game-ci","name":"GameCI","uuid":"66185740","kind":"organization","description":"Open source continuous integration for games","email":null,"website":"https://game.ci","location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/66185740?v=4","repositories_count":25,"last_synced_at":"2026-09-17T08:56:30.966Z","metadata":{"has_sponsors_listing":true,"funding":{"github":"game-ci","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"html_url":"https://github.com/game-ci","funding_links":["https://github.com/sponsors/game-ci"],"total_stars":4054,"followers":433,"following":0,"created_at":"2022-11-14T07:37:43.292Z","updated_at":"2026-09-17T08:56:31.010Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/game-ci","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/game-ci/repositories"},"tags":[{"name":"v4.8.2","sha":"4423ee75828dff56037d1d1cfdac6b68e3a6ba00","kind":"commit","published_at":"2026-09-01T23:45:20.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.8.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.8.2","dependencies_parsed_at":"2026-09-06T07:41:06.016Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.8.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.8.2/manifests"},{"name":"v4","sha":"4423ee75828dff56037d1d1cfdac6b68e3a6ba00","kind":"commit","published_at":"2026-09-01T23:45:20.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4","dependencies_parsed_at":"2026-09-06T07:41:04.653Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4/manifests"},{"name":"v5.0.1","sha":"adaf7cd8f42fd48fbbf2d4f5f67ca30d87f819f1","kind":"commit","published_at":"2026-09-01T23:30:08.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v5.0.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v5.0.1","dependencies_parsed_at":"2026-09-06T07:41:03.329Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v5.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v5.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v5.0.1/manifests"},{"name":"v5","sha":"adaf7cd8f42fd48fbbf2d4f5f67ca30d87f819f1","kind":"commit","published_at":"2026-09-01T23:30:08.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v5","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v5","dependencies_parsed_at":"2026-09-06T07:41:02.665Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v5/manifests"},{"name":"v6.0.0","sha":"eb1b9fba120c6e62c9fb7a7a81d6c107ce004c45","kind":"commit","published_at":"2026-08-29T01:11:01.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v6.0.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v6.0.0","dependencies_parsed_at":"2026-09-15T07:11:09.383Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v6.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v6.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v6.0.0/manifests"},{"name":"v6","sha":"eb1b9fba120c6e62c9fb7a7a81d6c107ce004c45","kind":"commit","published_at":"2026-08-29T01:11:01.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v6","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v6","dependencies_parsed_at":"2026-09-15T07:11:09.412Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v6/manifests"},{"name":"v6.0.0-beta.1","sha":"0ebc9136f1bdffb79a274ad8b17e2a07805b2f2c","kind":"tag","published_at":"2026-08-18T13:23:16.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v6.0.0-beta.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v6.0.0-beta.1","dependencies_parsed_at":"2026-09-06T07:41:03.574Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v6.0.0-beta.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v6.0.0-beta.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v6.0.0-beta.1/manifests"},{"name":"v5.0.0","sha":"d829bfc901f2347c8fe18898f06712b66916ef42","kind":"commit","published_at":"2026-05-07T03:42:29.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v5.0.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v5.0.0","dependencies_parsed_at":"2026-08-08T08:27:10.826Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v5.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v5.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v5.0.0/manifests"},{"name":"v4.8.1","sha":"1d4ee0697f193f54668e98961d79907911f4b4f2","kind":"commit","published_at":"2025-11-22T01:12:40.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.8.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.8.1","dependencies_parsed_at":"2026-08-08T08:27:12.015Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.8.1/manifests"},{"name":"v4.8.0","sha":"3a2abf9037d0df5648e9b888402654639215fa1e","kind":"commit","published_at":"2025-11-02T13:17:16.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.8.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.8.0","dependencies_parsed_at":"2026-08-08T08:27:12.027Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.8.0/manifests"},{"name":"v4.7.0","sha":"d58755728721f9161882dc79ea5818bb2f3ad64e","kind":"commit","published_at":"2025-10-11T10:41:23.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.7.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.7.0","dependencies_parsed_at":"2026-08-08T08:27:11.975Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.7.0/manifests"},{"name":"v4.6.3","sha":"2822af505ef99c6f0d46b7df4ade541680d3872c","kind":"commit","published_at":"2025-10-08T16:34:52.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.6.3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.6.3","dependencies_parsed_at":"2026-08-08T08:27:11.945Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.6.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.3/manifests"},{"name":"v4.6.2","sha":"8ec161b981a3cd2b1f5d6672e8cd1a09857490b8","kind":"commit","published_at":"2025-10-08T14:34:04.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.6.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.6.2","dependencies_parsed_at":"2026-08-08T08:27:12.168Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.6.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.2/manifests"},{"name":"v4.6.1","sha":"88a89c94a0b21d3b330b66798614fe6de38b96c2","kind":"commit","published_at":"2025-10-04T12:59:42.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.6.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.6.1","dependencies_parsed_at":"2026-08-08T08:27:12.155Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.1/manifests"},{"name":"v4.6.0","sha":"f7f3f70c5760449a1d9f264093b94eb7be17d718","kind":"commit","published_at":"2025-09-30T09:55:14.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.6.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.6.0","dependencies_parsed_at":"2026-08-08T08:27:12.602Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.6.0/manifests"},{"name":"v4.5.0","sha":"3b26780ddfe24a0ee2aebb0a65297ab69fc5bb4c","kind":"commit","published_at":"2025-06-07T16:08:47.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.5.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.5.0","dependencies_parsed_at":"2025-08-12T05:24:46.626Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.5.0/manifests"},{"name":"v4.4.0","sha":"81ed299e10d0ca8f55616c5c74505ffce511163c","kind":"commit","published_at":"2025-04-10T20:48:14.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.4.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.4.0","dependencies_parsed_at":"2025-08-12T05:24:46.603Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.4.0/manifests"},{"name":"v4.3.0","sha":"b11b6a6f2ccfed2359d8e0d9f9d300031d8f925e","kind":"commit","published_at":"2024-10-07T22:06:50.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.3.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.3.0","dependencies_parsed_at":"2024-10-09T04:11:22.534Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.3.0/manifests"},{"name":"v4.2.3","sha":"dd427466ce741f0f68264e5962f034214d814904","kind":"commit","published_at":"2024-03-17T20:33:23.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.2.3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.2.3","dependencies_parsed_at":"2024-03-19T12:02:00.575Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.3/manifests"},{"name":"v4.2.2","sha":"0c16aab35398b8d1e3a4204aaa9ba77487c1418c","kind":"commit","published_at":"2024-03-17T04:31:46.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.2.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.2.2","dependencies_parsed_at":"2024-03-18T13:17:59.001Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.2/manifests"},{"name":"v4.2.1","sha":"f4d2cceeb5831fd9dc4588d1b39d5f2dca8f28e6","kind":"commit","published_at":"2024-02-19T03:44:25.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.2.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.2.1","dependencies_parsed_at":"2024-02-22T08:36:09.804Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.1/manifests"},{"name":"v4.2.0","sha":"4ae184ca8900a41a8b1e141e184adc6c1cb959a2","kind":"commit","published_at":"2024-02-19T01:39:26.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.2.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.2.0","dependencies_parsed_at":"2024-02-22T08:36:11.918Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.2.0/manifests"},{"name":"v4.1.4","sha":"2800d1440309b274ede329d41b75b1456291a34d","kind":"commit","published_at":"2024-01-21T10:45:33.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.1.4","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.1.4","dependencies_parsed_at":"2024-01-29T14:19:44.297Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.4/manifests"},{"name":"v4.1.3","sha":"ff23166e3002a9f3f869621650dc992e657e17ce","kind":"commit","published_at":"2023-12-13T06:10:57.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.1.3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.1.3","dependencies_parsed_at":"2023-12-16T04:28:39.650Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.3/manifests"},{"name":"v4.1.2","sha":"9406bce8755d1903fa423d9b39de091ae2875506","kind":"commit","published_at":"2023-12-08T06:13:03.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.1.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.1.2","dependencies_parsed_at":"2023-12-10T05:01:56.165Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.2/manifests"},{"name":"v4.1.1","sha":"bbd713b05afb7069db7168195cb74a904966487f","kind":"commit","published_at":"2023-11-28T07:24:58.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.1.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.1.1","dependencies_parsed_at":"2023-12-01T04:03:43.901Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.1/manifests"},{"name":"v4.1.0","sha":"8ca1282c9eabf4b053576f63611d21ee855b80db","kind":"commit","published_at":"2023-11-25T07:24:16.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.1.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.1.0","dependencies_parsed_at":"2023-11-27T04:04:35.015Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.1.0/manifests"},{"name":"v4.0.1","sha":"8da77ace98ea074f2899f541110800bfc634b28e","kind":"commit","published_at":"2023-11-16T15:36:39.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.0.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.0.1","dependencies_parsed_at":"2023-11-18T04:12:41.493Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.0.1/manifests"},{"name":"v4.0.0","sha":"2afd9cd86f6f5f76f46578659fb082d1a6a7eca3","kind":"commit","published_at":"2023-11-15T14:17:55.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v4.0.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v4.0.0","dependencies_parsed_at":"2023-11-17T04:15:00.326Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v4.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v4.0.0/manifests"},{"name":"v3.1.0","sha":"2190fd56673779b00d4413249d3462f7bd5e60bb","kind":"commit","published_at":"2023-09-06T21:35:24.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v3.1.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v3.1.0","dependencies_parsed_at":"2023-09-08T04:26:35.563Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v3.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v3.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v3.1.0/manifests"},{"name":"v3","sha":"2190fd56673779b00d4413249d3462f7bd5e60bb","kind":"commit","published_at":"2023-09-06T21:35:24.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v3","dependencies_parsed_at":"2026-08-24T09:47:57.904Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v3/manifests"},{"name":"v3.0.0","sha":"a073719c29719b5005080d584987511491f9f26f","kind":"commit","published_at":"2023-08-22T08:03:32.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v3.0.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v3.0.0","dependencies_parsed_at":"2023-08-25T04:43:55.104Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v3.0.0/manifests"},{"name":"v2.2.0","sha":"0efa1855a3c37ab64c3a9e221a939a967932923c","kind":"commit","published_at":"2023-02-14T05:07:10.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.2.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.2.0","dependencies_parsed_at":"2023-07-20T13:58:23.821Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.2.0/manifests"},{"name":"v2.1.2","sha":"9f79830454d37cd9e70c4c3b73d26c06bcce2b2a","kind":"commit","published_at":"2022-10-15T18:52:15.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.1.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.1.2","dependencies_parsed_at":"2023-07-20T13:58:23.460Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.1.2/manifests"},{"name":"v2","sha":"9f79830454d37cd9e70c4c3b73d26c06bcce2b2a","kind":"commit","published_at":"2022-10-15T18:52:15.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2","dependencies_parsed_at":"2026-08-24T09:47:58.685Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2/manifests"},{"name":"v2.1.1","sha":"579daa93a634c0d09499e5f907f2b42b4ff70fdb","kind":"commit","published_at":"2022-09-17T14:46:22.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.1.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.1.1","dependencies_parsed_at":"2023-07-20T13:58:23.679Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.1.1/manifests"},{"name":"v2.1.0","sha":"db2d8b6dbd9dd96dd99c7059e993e93356c233d4","kind":"commit","published_at":"2022-08-04T00:09:32.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.1.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.1.0","dependencies_parsed_at":"2023-07-20T13:58:25.349Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.1.0/manifests"},{"name":"v2.0.4","sha":"2652cb78a7f9424999e3ebef90a55c35a8c7f080","kind":"commit","published_at":"2022-05-08T11:18:37.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0.4","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0.4","dependencies_parsed_at":"2023-07-20T13:58:24.383Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.4/manifests"},{"name":"v2.0.3","sha":"4be5d2ddf4e0f4f16799576555bf7d2fc1c61c08","kind":"commit","published_at":"2022-04-11T20:22:52.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0.3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0.3","dependencies_parsed_at":"2023-07-20T13:58:23.950Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.3/manifests"},{"name":"v2.0.2","sha":"2b399b264151108d3f2a94087614b867931669d3","kind":"commit","published_at":"2022-04-05T15:46:52.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0.2","dependencies_parsed_at":"2023-07-20T13:58:24.443Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.2/manifests"},{"name":"v2.0.1","sha":"40891d6b4362bbb1f83c879082ab00b498198a3c","kind":"commit","published_at":"2022-04-04T08:19:40.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0.1","dependencies_parsed_at":"2023-07-20T13:58:25.082Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.1/manifests"},{"name":"v2.0.0","sha":"441be815437f3b77cb65f15adfe09cc3d7447682","kind":"commit","published_at":"2022-04-03T15:59:14.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0.0","dependencies_parsed_at":"2023-07-20T13:58:24.057Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.0/manifests"},{"name":"v2.0.0-alpha-14","sha":"3d0eb0805bbe2df90e319abbe42e41d0b9105625","kind":"commit","published_at":"2022-01-25T21:18:15.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0.0-alpha-14","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0.0-alpha-14","dependencies_parsed_at":"2023-07-20T13:58:23.963Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0.0-alpha-14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.0-alpha-14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0.0-alpha-14/manifests"},{"name":"v2.0-alpha-13","sha":"c317d144c37b2004ae02490988ded7b934a182be","kind":"commit","published_at":"2021-09-06T16:31:24.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-13","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-13","dependencies_parsed_at":"2023-07-20T13:58:24.589Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-13/manifests"},{"name":"v2.0-alpha-12","sha":"3ebdb0e6788e6b438396b6eb37b348d88db2a2f4","kind":"commit","published_at":"2021-08-30T23:18:34.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-12","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-12","dependencies_parsed_at":"2023-07-20T13:58:25.234Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-12/manifests"},{"name":"v2.0-alpha-11","sha":"36364461d5d387dc2fda81443e09aaf1bd6ee576","kind":"commit","published_at":"2021-07-01T12:15:01.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-11","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-11","dependencies_parsed_at":"2023-07-20T13:58:25.103Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-11/manifests"},{"name":"v2.0-alpha-10","sha":"9fff3627757a76db932be572b62521043322e901","kind":"commit","published_at":"2021-05-22T19:07:54.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-10","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-10","dependencies_parsed_at":"2023-07-20T13:58:23.882Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-10/manifests"},{"name":"v2.0-alpha-9","sha":"f0e18ea3a52f3228e674b60810c4d6672dd8e39f","kind":"commit","published_at":"2021-05-20T15:51:54.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-9","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-9","dependencies_parsed_at":"2023-07-20T13:58:24.043Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-9/manifests"},{"name":"v2.0-alpha-8","sha":"e31af2046667a4cb30f410317c5f87be681dea63","kind":"commit","published_at":"2021-05-01T23:23:15.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-8","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-8","dependencies_parsed_at":"2023-07-20T13:58:25.357Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-8/manifests"},{"name":"v2.0-alpha-7","sha":"7e7938581c22ca5db1b599bd796f01995d5fef3b","kind":"commit","published_at":"2021-04-23T22:30:09.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-7","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-7","dependencies_parsed_at":"2023-07-20T13:58:24.012Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-7/manifests"},{"name":"v2.0-alpha-6","sha":"c8202c01e7dfe4de0e897b26cb2ca1cc363e4ad4","kind":"commit","published_at":"2021-01-05T18:19:16.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-6","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-6","dependencies_parsed_at":"2023-07-20T13:58:25.079Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-6/manifests"},{"name":"v2.0-aplha-5","sha":"df7d1e1e25844fb7d6d8a28c87d573889040c8d8","kind":"commit","published_at":"2020-11-19T10:05:49.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-aplha-5","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-aplha-5","dependencies_parsed_at":"2023-07-20T13:58:23.763Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-aplha-5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-aplha-5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-aplha-5/manifests"},{"name":"v2.0-alpha-4","sha":"9707ad7ad58f97196b70f2c5f7f539a12573f4d6","kind":"commit","published_at":"2020-11-17T23:51:10.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-4","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-4","dependencies_parsed_at":"2023-07-20T13:58:25.206Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-4/manifests"},{"name":"v2.0-alpha-3","sha":"8eeb8484835cea9197d146f6c45eefb4c66f2039","kind":"commit","published_at":"2020-11-13T23:57:44.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-3","dependencies_parsed_at":"2023-07-20T13:58:24.191Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-3/manifests"},{"name":"v2.0-alpha-2","sha":"9e2a1b2d358083fd2d85b7f432a452659ebececd","kind":"commit","published_at":"2020-11-09T19:04:56.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-2","dependencies_parsed_at":"2023-07-20T13:58:24.420Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-2/manifests"},{"name":"v2.0-alpha-1","sha":"471bf0bdf0c1db4edb6a4ed3be31511663574519","kind":"commit","published_at":"2020-11-01T14:08:06.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v2.0-alpha-1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v2.0-alpha-1","dependencies_parsed_at":"2023-07-20T13:58:23.991Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v2.0-alpha-1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v2.0-alpha-1/manifests"},{"name":"v1.5","sha":"17c28995b24bfb4e9e6f8fa50b05e253156452b6","kind":"commit","published_at":"2020-10-29T22:21:48.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v1.5","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v1.5","dependencies_parsed_at":"2023-07-20T13:58:24.823Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.5/manifests"},{"name":"v1.4","sha":"f42f7923ed82ceb15919846804067a9009dfca0b","kind":"commit","published_at":"2020-09-27T19:44:14.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v1.4","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v1.4","dependencies_parsed_at":"2023-07-20T13:58:23.885Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.4/manifests"},{"name":"v1.3","sha":"22bc9a9badf2bcf39432a40df692e045c3f5647e","kind":"commit","published_at":"2020-09-19T00:41:34.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v1.3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v1.3","dependencies_parsed_at":"2023-07-20T13:58:25.036Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.3/manifests"},{"name":"v1.2","sha":"3e0842dda06dd69d8f41c531eea96aab4caaed96","kind":"commit","published_at":"2020-08-16T19:09:34.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v1.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v1.2","dependencies_parsed_at":"2023-07-20T13:58:24.009Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.2/manifests"},{"name":"v1.1","sha":"3523c6a93466eee300869bbd3534b8fefba7849a","kind":"commit","published_at":"2020-06-25T16:14:32.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v1.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v1.1","dependencies_parsed_at":"2023-07-20T13:58:25.145Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.1/manifests"},{"name":"v1.0","sha":"bfe6be7ce20eed3452adc80ffd671372fa992655","kind":"commit","published_at":"2020-05-22T22:25:26.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v1.0","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v1.0","dependencies_parsed_at":"2023-07-20T13:58:24.840Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v1.0/manifests"},{"name":"v0.15","sha":"44bde7feb983572727afc1d26b320c9af1491a2b","kind":"commit","published_at":"2020-05-02T14:37:24.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.15","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.15","dependencies_parsed_at":"2023-07-20T13:58:23.910Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.15/manifests"},{"name":"v0.14","sha":"34e4b86924c8b0d787b724fbfe60f4949cefff1a","kind":"commit","published_at":"2020-05-01T18:32:41.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.14","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.14","dependencies_parsed_at":"2023-07-20T13:58:23.746Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.14/manifests"},{"name":"v0.13","sha":"e9514b4e37e45493bf8553eccf62d7fbc926c5bc","kind":"commit","published_at":"2020-05-01T15:55:27.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.13","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.13","dependencies_parsed_at":"2023-07-20T13:58:23.910Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.13/manifests"},{"name":"v0.12","sha":"7e115b5cc3e6e16db57d5c48b877b8edc5bf30ab","kind":"commit","published_at":"2020-03-10T18:22:23.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.12","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.12","dependencies_parsed_at":"2023-07-20T13:58:25.249Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.12/manifests"},{"name":"v0.11","sha":"2c1ef01beb603d98e4e543f2c1af8bfda0b29d43","kind":"commit","published_at":"2020-02-11T19:59:27.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.11","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.11","dependencies_parsed_at":"2023-07-20T13:58:23.797Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.11/manifests"},{"name":"v0.10","sha":"0399609b070270fb87ae52875b79447e6cff67a6","kind":"commit","published_at":"2020-02-01T20:02:56.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.10","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.10","dependencies_parsed_at":"2023-07-20T13:58:23.915Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.10/manifests"},{"name":"v0.9","sha":"6bff9d7c68c21847c2b7e2e4b43e9615a6887c7b","kind":"commit","published_at":"2020-01-27T19:42:52.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.9","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.9","dependencies_parsed_at":"2023-07-20T13:58:23.538Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.9/manifests"},{"name":"v0.8","sha":"1d1f81c0bb359de8abe9eb36235de248a2daa5c3","kind":"commit","published_at":"2020-01-20T23:28:05.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.8","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.8","dependencies_parsed_at":"2023-07-20T13:58:25.129Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.8/manifests"},{"name":"v0.7","sha":"a84535fc04b91745940a3f4e243d144aa09326b2","kind":"commit","published_at":"2020-01-19T00:54:56.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.7","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.7","dependencies_parsed_at":"2023-07-20T13:58:25.193Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.7/manifests"},{"name":"v0.6","sha":"0badec78bf65471240e29f88e6a393b2fdadf263","kind":"commit","published_at":"2020-01-12T16:51:45.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.6","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.6","dependencies_parsed_at":"2023-07-20T13:58:23.767Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.6/manifests"},{"name":"v0.5","sha":"d002e036ec8b8a19051913a2743d9feede41a552","kind":"commit","published_at":"2020-01-11T00:06:22.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.5","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.5","dependencies_parsed_at":"2023-07-20T13:58:24.346Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.5/manifests"},{"name":"v0.4","sha":"c55fc4eecd6f5d2a769112bb1fecb41d8b288bf9","kind":"commit","published_at":"2020-01-06T23:21:27.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.4","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.4","dependencies_parsed_at":"2023-07-20T13:58:25.176Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.4/manifests"},{"name":"v0.3","sha":"948a53575bc88e867fff49844cb4d3deffa5320c","kind":"commit","published_at":"2019-12-22T21:43:47.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.3","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.3","dependencies_parsed_at":"2023-07-20T13:58:24.141Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.3/manifests"},{"name":"v0.2","sha":"75aac428f19b1b22638419c82f9a09bb71dc0fb8","kind":"commit","published_at":"2019-12-08T01:02:32.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.2","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.2","dependencies_parsed_at":"2023-07-20T13:58:24.767Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.2/manifests"},{"name":"v0.1","sha":"6cdeb78e18b480831d54f377a9f71d636d91d981","kind":"commit","published_at":"2019-12-01T01:22:40.000Z","download_url":"https://codeload.github.com/game-ci/unity-builder/tar.gz/v0.1","html_url":"https://github.com/game-ci/unity-builder/releases/tag/v0.1","dependencies_parsed_at":"2023-07-20T13:58:24.196Z","dependency_job_id":null,"purl":"pkg:github/game-ci/unity-builder@v0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/tags/v0.1/manifests"}]},"repo_metadata_updated_at":"2026-09-21T22:17:12.307Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":430,"rankings":{"downloads":null,"dependent_repos_count":1.7112977341150373,"dependent_packages_count":0.0,"stargazers_count":0.35493582633497067,"forks_count":0.2630327998732372,"docker_downloads_count":null,"average":0.5823165900808113},"purl":"pkg:githubactions/game-ci/unity-builder","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/game-ci/unity-builder","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/game-ci/unity-builder","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/game-ci/unity-builder/dependencies","status":null,"funding_links":["https://github.com/sponsors/game-ci"],"critical":null,"issue_metadata":{"last_synced_at":"2026-09-20T18:54:52.002Z","issues_count":199,"pull_requests_count":174,"avg_time_to_close_issue":13557861.08759124,"avg_time_to_close_pull_request":6714452.401408451,"issues_closed_count":136,"pull_requests_closed_count":142,"pull_request_authors_count":44,"issue_authors_count":151,"avg_comments_per_issue":3.7035175879396984,"avg_comments_per_pull_request":3.2586206896551726,"merged_pull_requests_count":88,"bot_issues_count":0,"bot_pull_requests_count":17,"past_year_issues_count":15,"past_year_pull_requests_count":15,"past_year_avg_time_to_close_issue":15367344.818181818,"past_year_avg_time_to_close_pull_request":4863581.5,"past_year_issues_closed_count":11,"past_year_pull_requests_closed_count":14,"past_year_pull_request_authors_count":7,"past_year_issue_authors_count":14,"past_year_avg_comments_per_issue":3.6,"past_year_avg_comments_per_pull_request":4.4,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":1,"past_year_merged_pull_requests_count":6,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/game-ci%2Funity-builder/issues","maintainers":[{"login":"frostebite","count":50,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/frostebite"},{"login":"AndrewKahr","count":35,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/AndrewKahr"},{"login":"GabLeRoux","count":19,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/GabLeRoux"},{"login":"davidmfinol","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/davidmfinol"},{"login":"webbertakken","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/webbertakken"},{"login":"MichaelBuhler","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/MichaelBuhler"},{"login":"cloudymax","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cloudymax"},{"login":"EricRibeiro","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/EricRibeiro"}],"active_maintainers":[{"login":"frostebite","count":9,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/frostebite"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/game-ci%2Funity-builder/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/game-ci%2Funity-builder/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/game-ci%2Funity-builder/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/game-ci%2Funity-builder/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/game-ci%2Funity-builder/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/game-ci%2Funity-builder/codemeta","maintainers":[]}