{"id":7855351,"name":"Cyberboss/install-winget","ecosystem":"actions","description":"Installs a version of winget","homepage":"","licenses":"agpl-3.0","normalized_licenses":["AGPL-3.0"],"repository_url":"https://github.com/Cyberboss/install-winget","keywords_array":["actions","github-actions","github-actions-ci","install","installer","installer-script","windows","windows-2022","winget","winget-cli"],"namespace":"Cyberboss","versions_count":13,"first_release_published_at":"2023-06-26T15:05:08.000Z","latest_release_published_at":"2025-04-05T15:13:13.000Z","latest_release_number":"v1.2.0","last_synced_at":"2026-06-09T19:16:27.730Z","created_at":"2023-06-26T18:17:25.402Z","updated_at":"2026-06-09T19:16:27.730Z","registry_url":"https://github.com/Cyberboss/install-winget","install_command":null,"documentation_url":null,"metadata":{"name":"Install winget","description":"Installs a version of winget","author":"Dominion/Cyberboss","branding":{"icon":"arrow-down-circle","color":"blue"},"inputs":{"GITHUB_TOKEN":{"description":"No scopes GitHub token for querying the API and downloading from winget-cli releases","required":false,"default":"NONE"},"wget_release_id":{"description":"Specify desired release-id of winget can be specified here. By default, a recent stable release will be selected by the action author. To see what versions are available, look into https://api.github.com/repos/microsoft/winget-cli/releases","required":false,"default":"164835566"}},"outputs":{"winget-version":{"description":"The version of winget installed","value":"${{ steps.winget-version.outputs.winget-version }}"}},"runs":{"using":"composite","steps":[{"name":"Check runner OS","if":"${{ runner.os != 'Windows' }}","shell":"bash","run":"echo \"[ERROR] This action only runs on Windows runner, Current runner: ${{ runner.os }}\"\nexit 1\n"},{"name":"Windows Server 2025 Simple Setup","if":"${{ runner.name == \"windows-2025\" }}","shell":"powershell","run":"runner.name"},{"name":"Download Microsoft.UI.Xaml v2.8.6","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"$ProgressPreference = 'SilentlyContinue'\nInvoke-WebRequest -Uri https://www.nuget.org/api/v2/package/Microsoft.UI.Xaml/2.8.6 -OutFile .\\microsoft.ui.xaml.2.8.6.zip\n"},{"name":"Unzip Microsoft.UI.Xaml v2.8.6","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"Expand-Archive .\\microsoft.ui.xaml.2.8.6.zip\n"},{"name":"Download Microsoft.VCLibs.x64.14.00.Desktop","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"$ProgressPreference = 'SilentlyContinue'\nInvoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile Microsoft.VCLibs.x64.14.00.Desktop.appx\n"},{"name":"Determine Latest winget release via GitHub API","if":"${{ runner.name != \"windows-2025\" }}","id":"github_api","shell":"powershell","run":"$ProgressPreference = 'SilentlyContinue'\nif (\"${{ inputs.GITHUB_TOKEN }}\" -ne \"NONE\") {\n  $headers = @{ \"Authorization\" = \"Bearer ${{ inputs.GITHUB_TOKEN }}\" }\n  Write-Host \"Token present\"\n} else {\n  $headers = @{}\n  Write-Host \"No token present\"\n}\n\n$releaseURL = \"https://api.github.com/repos/microsoft/winget-cli/releases/${{ inputs.wget_release_id }}\"\n$gitHubReleasesResponse = Invoke-RestMethod $releaseURL -Headers $headers\n$wingetReleaseAssets = $gitHubReleasesResponse.assets\n$latestWingetMsixBundleUri = $wingetReleaseAssets.browser_download_url | Where-Object {$_.EndsWith(\".msixbundle\")}\n$latestWingetLicenseXmlUri = $wingetReleaseAssets.browser_download_url | Where-Object {$_.EndsWith(\"License1.xml\")}\nWrite-Host \"latest_winget_msix_bundle_uri=$latestWingetMsixBundleUri\"\nWrite-Host \"latest_winget_license_xml_uri=$latestWingetLicenseXmlUri\"\nWrite-Output \"latest_winget_msix_bundle_uri=$latestWingetMsixBundleUri\" \u003e\u003e $Env:GITHUB_OUTPUT\nWrite-Output \"latest_winget_license_xml_uri=$latestWingetLicenseXmlUri\" \u003e\u003e $Env:GITHUB_OUTPUT\n"},{"name":"Download winget","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"$ProgressPreference = 'SilentlyContinue'\nInvoke-WebRequest -Headers $headers -Uri \"${{ steps.github_api.outputs.latest_winget_msix_bundle_uri }}\" -OutFile \"./winget.msixbundle\"\n"},{"name":"Download License","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"$ProgressPreference = 'SilentlyContinue'\nInvoke-WebRequest -Headers $headers -Uri \"${{ steps.github_api.outputs.latest_winget_license_xml_uri }}\" -OutFile \"./winget_License1.xml\"\n"},{"name":"Install Microsoft.UI.Xaml v2.8.6","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"Add-AppxPackage .\\microsoft.ui.xaml.2.8.6\\tools\\AppX\\x64\\Release\\Microsoft.UI.Xaml.2.8.appx\n"},{"name":"Install Microsoft.VCLibs.x64.14.00.Desktop","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"Add-AppxPackage Microsoft.VCLibs.x64.14.00.Desktop.appx\n"},{"name":"Install winget","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"echo \"PROVISIONING WINGET\"\nAdd-AppxProvisionedPackage -Online -PackagePath ./winget.msixbundle -LicensePath ./winget_License1.xml\n"},{"name":"Installing Winget","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"echo \"INSTALLING WINGET\"\n$ProgressPreference = 'SilentlyContinue'\nAdd-AppxPackage .\\winget.msixbundle\n"},{"name":"Cleanup Downloads","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"rm Microsoft.VCLibs.x64.14.00.Desktop.appx\nrm ./winget_License1.xml\nrm ./winget.msixbundle\nRemove-Item -Recurse -Force .\\microsoft.ui.xaml.2.8.6\n"},{"name":"Wait to allow Installation to Finalize","if":"${{ runner.name != \"windows-2025\" }}","shell":"powershell","run":"foreach ($i in 1..60) {\n  Start-Sleep -Seconds 1\n  Write-Host \"Waiting for winget to install... ${i}\"\n  if (Get-Command winget -ErrorAction SilentlyContinue) {\n    break\n  }\n}\n"},{"name":"Output winget Version","id":"winget-version","shell":"powershell","run":"$version=winget --version\nWrite-Host \"$version\"\nWrite-Output \"winget-version=$version\" \u003e\u003e $Env:GITHUB_OUTPUT\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":176493798,"uuid":"658808816","full_name":"Cyberboss/install-winget","owner":"Cyberboss","description":"Action to install latest winget CLI on Windows runners","archived":true,"fork":false,"pushed_at":"2025-04-25T21:55:18.000Z","size":90,"stargazers_count":17,"open_issues_count":5,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-27T15:28:02.580Z","etag":null,"topics":["actions","github-actions","github-actions-ci","install","installer","installer-script","windows","windows-2022","winget","winget-cli"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Cyberboss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2023-06-26T14:30:16.000Z","updated_at":"2025-09-13T19:37:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"ea179161-31be-4a2a-aac0-464eb0b533dc","html_url":"https://github.com/Cyberboss/install-winget","commit_stats":null,"previous_names":["cyberboss/install-winget"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/Cyberboss/install-winget","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cyberboss","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/sbom","scorecard":{"id":34715,"data":{"date":"2025-08-11","repo":{"name":"github.com/Cyberboss/install-winget","commit":"6f566e9e227561d5d31e45d65f9b777b3fa8f56f"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":3.9,"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":"Code-Review","score":1,"reason":"Found 3/22 approved changesets -- score normalized to 1","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":"Maintained","score":0,"reason":"project is archived","details":["Warn: Repository is archived."],"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":"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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/test_action.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":"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/test_action.yml:31: update your workflow using https://app.stepsecurity.io/secureworkflow/Cyberboss/install-winget/test_action.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test_action.yml:60: update your workflow using https://app.stepsecurity.io/secureworkflow/Cyberboss/install-winget/test_action.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/test_action.yml:91: update your workflow using https://app.stepsecurity.io/secureworkflow/Cyberboss/install-winget/test_action.yml/main?enable=pin","Info:   0 out of   3 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":"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":"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":"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":"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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: GNU Affero General Public License v3.0: 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":"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 12 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"}}]},"last_synced_at":"2025-08-14T20:03:45.146Z","repository_id":176493798,"created_at":"2025-08-14T20:03:45.146Z","updated_at":"2025-08-14T20:03:45.146Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277302101,"owners_count":25795361,"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-09-27T02:00:08.978Z","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":"Cyberboss","name":"Jordan Dominion","uuid":"8171642","kind":"user","description":"Dialing 444...","email":"","website":"https://dextraspace.net","location":"Sky Tower West, GTA","twitter":null,"company":"Rockstar Games","icon_url":"https://avatars.githubusercontent.com/u/8171642?u=8242719707b38a242c33b03649cba1ca463c7024\u0026v=4","repositories_count":115,"last_synced_at":"2025-09-17T00:07:54.297Z","metadata":{"has_sponsors_listing":true},"html_url":"https://github.com/Cyberboss","funding_links":["https://github.com/sponsors/Cyberboss"],"total_stars":21,"followers":21,"following":8,"created_at":"2022-11-09T02:57:04.133Z","updated_at":"2025-09-17T00:07:54.297Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cyberboss","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cyberboss/repositories"},"tags":[{"name":"v1.2.0","sha":"fc922bc7e0adb16f39ceab057cb2af88bd3799e1","kind":"tag","published_at":"2025-04-05T15:13:13.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.2.0","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.2.0","dependencies_parsed_at":null,"dependency_job_id":"e8bd0144-730d-487d-a1e3-095cd98347fc","purl":"pkg:github/Cyberboss/install-winget@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.2.0/manifests"},{"name":"v1.2","sha":"fc922bc7e0adb16f39ceab057cb2af88bd3799e1","kind":"tag","published_at":"2025-04-05T15:13:07.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.2","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.2","dependencies_parsed_at":null,"dependency_job_id":"c0bd1483-5538-4c6e-a870-64505b0338e5","purl":"pkg:github/Cyberboss/install-winget@v1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.2/manifests"},{"name":"v1.1","sha":"1c6f189175e9f015bf1aa113cd1cc6c73efb9d47","kind":"commit","published_at":"2024-11-03T14:46:31.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.1","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.1","dependencies_parsed_at":"2024-11-05T04:46:06.383Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.1/manifests"},{"name":"v1.1.1","sha":"1c6f189175e9f015bf1aa113cd1cc6c73efb9d47","kind":"commit","published_at":"2024-11-03T14:46:31.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.1.1","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.1.1","dependencies_parsed_at":"2024-11-05T04:46:06.337Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"842a9983755ae59d77059afbd0713596e4c4935b","kind":"commit","published_at":"2024-11-03T13:13:28.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.1.0","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.1.0","dependencies_parsed_at":"2024-11-05T04:46:06.350Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.1.0/manifests"},{"name":"v1.0.7","sha":"06b8cab77b120d0dd745dcf5cbb3834820587e54","kind":"commit","published_at":"2024-11-02T20:02:32.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.7","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.7","dependencies_parsed_at":"2024-11-04T04:45:48.429Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.7/manifests"},{"name":"v1.0.6","sha":"eabb209a7544e2f2ffd1616b6f9efebacc9e54fb","kind":"commit","published_at":"2024-02-28T13:48:45.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.6","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.6","dependencies_parsed_at":"2024-03-01T04:21:23.245Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.6/manifests"},{"name":"v1.0.5","sha":"53b4537715155f76763296c2598c1ff32d1eb818","kind":"tag","published_at":"2023-09-16T14:45:09.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.5","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.5","dependencies_parsed_at":"2023-09-17T11:28:59.260Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.5/manifests"},{"name":"v1.0.4","sha":"3301de662a82d09e8aded238e995a8e1259159c8","kind":"tag","published_at":"2023-07-08T14:31:07.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.4","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.4","dependencies_parsed_at":"2023-07-20T14:00:39.657Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.4/manifests"},{"name":"v1.0.3","sha":"042f7e56d5e6440041d258b6d8fd4160dcaae67b","kind":"tag","published_at":"2023-07-02T12:17:18.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.3","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.3","dependencies_parsed_at":"2023-07-20T14:00:39.895Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.3/manifests"},{"name":"v1.0.2","sha":"aad9de3db3bc74572bbe7cbb07b3d68057007ef8","kind":"tag","published_at":"2023-07-02T12:02:11.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.2","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.2","dependencies_parsed_at":"2023-07-20T14:00:39.803Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"8f9c6f517652f5061be69fb06fbc593ccad158fa","kind":"commit","published_at":"2023-06-27T23:43:37.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1.0.1","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1.0.1","dependencies_parsed_at":"2023-07-20T14:00:39.761Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1.0.1/manifests"},{"name":"v1","sha":"ea14a72dc45f1132a33663a8ed454609fa65e471","kind":"commit","published_at":"2023-06-26T15:05:08.000Z","download_url":"https://codeload.github.com/Cyberboss/install-winget/tar.gz/v1","html_url":"https://github.com/Cyberboss/install-winget/releases/tag/v1","dependencies_parsed_at":"2023-07-20T14:00:39.775Z","dependency_job_id":null,"purl":"pkg:github/Cyberboss/install-winget@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cyberboss%2Finstall-winget/tags/v1/manifests"}]},"repo_metadata_updated_at":"2025-09-27T22:51:48.352Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":5,"rankings":{"downloads":null,"dependent_repos_count":15.322452860085564,"dependent_packages_count":0.0,"stargazers_count":34.67913167485343,"forks_count":35.1386468071621,"docker_downloads_count":null,"average":21.285057835525272},"purl":"pkg:githubactions/Cyberboss/install-winget","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/Cyberboss/install-winget","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/Cyberboss/install-winget","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/Cyberboss/install-winget/dependencies","status":null,"funding_links":["https://github.com/sponsors/Cyberboss"],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T13:15:05.904Z","issues_count":7,"pull_requests_count":7,"avg_time_to_close_issue":19592.5,"avg_time_to_close_pull_request":1766801.2857142857,"issues_closed_count":2,"pull_requests_closed_count":7,"pull_request_authors_count":4,"issue_authors_count":7,"avg_comments_per_issue":2.0,"avg_comments_per_pull_request":1.2857142857142858,"merged_pull_requests_count":7,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":4,"past_year_pull_requests_count":7,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":1766801.2857142857,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":7,"past_year_pull_request_authors_count":4,"past_year_issue_authors_count":4,"past_year_avg_comments_per_issue":2.0,"past_year_avg_comments_per_pull_request":1.2857142857142858,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":7,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/cyberboss%2Finstall-winget/issues","maintainers":[{"login":"Cyberboss","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Cyberboss"}],"active_maintainers":[{"login":"Cyberboss","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Cyberboss"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/Cyberboss%2Finstall-winget/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/Cyberboss%2Finstall-winget/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/Cyberboss%2Finstall-winget/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/Cyberboss%2Finstall-winget/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/Cyberboss%2Finstall-winget/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/Cyberboss%2Finstall-winget/codemeta","maintainers":[]}