{"id":6325941,"name":"DeterminateSystems/update-flake-lock","ecosystem":"actions","description":"Update your Nix flake.lock and send a PR","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/DeterminateSystems/update-flake-lock","keywords_array":["nix","nix-flake"],"namespace":"DeterminateSystems","versions_count":28,"first_release_published_at":"2021-10-18T19:54:45.000Z","latest_release_published_at":"2025-11-26T21:17:01.000Z","latest_release_number":"v28","last_synced_at":"2026-06-19T08:31:15.422Z","created_at":"2023-02-13T12:57:48.597Z","updated_at":"2026-06-19T08:31:15.423Z","registry_url":"https://github.com/DeterminateSystems/update-flake-lock","install_command":null,"documentation_url":null,"metadata":{"name":"Update Nix Flake Lock","description":"Update your Nix flake.lock and send a PR","inputs":{"inputs":{"description":"A space-separated list of inputs to update. Leave empty to update all inputs.","required":false,"default":""},"token":{"description":"GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)","required":false,"default":"${{ github.token }}"},"commit-msg":{"description":"The message provided with the commit","required":false,"default":"flake.lock: Update"},"base":{"description":"Sets the pull request base branch. Defaults to the branch checked out in the workflow.","required":false},"branch":{"description":"The branch of the PR to be created","required":false,"default":"update_flake_lock_action"},"path-to-flake-dir":{"description":"The path of the directory containing `flake.nix` file within your repository. Useful when `flake.nix` cannot reside at the root of your repository.","required":false},"pr-title":{"description":"The title of the PR to be created","required":false,"default":"flake.lock: Update"},"pr-body":{"description":"The body of the PR to be created","required":false,"default":"Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.\n\n```\n{{ env.GIT_COMMIT_MESSAGE }}\n```\n\n### Running GitHub Actions on this PR\n\nGitHub Actions will not run workflows on pull requests which are opened by a GitHub Action.\n\n**To run GitHub Actions workflows on this PR, close and re-open this pull request.**\n"},"pr-labels":{"description":"A comma or newline separated list of labels to set on the Pull Request to be created","required":false,"default":""},"pr-assignees":{"description":"A comma or newline separated list of assignees (GitHub usernames).","required":false,"default":""},"pr-reviewers":{"description":"A comma or newline separated list of reviewers (GitHub usernames) to request a review from.","required":false,"default":""},"git-author-name":{"description":"Author name used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]"},"git-author-email":{"description":"Author email used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]@users.noreply.github.com"},"git-committer-name":{"description":"Committer name used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]"},"git-committer-email":{"description":"Committer email used for commit. Only used if sign-commits is false.","required":false,"default":"github-actions[bot]@users.noreply.github.com"},"sign-commits":{"description":"Set to true if the action should sign the commit with GPG","required":false,"default":"false"},"gpg-private-key":{"description":"GPG Private Key with which to sign the commits in the PR to be created","required":false,"default":""},"gpg-fingerprint":{"description":"Fingerprint of specific GPG subkey to use","required":false},"gpg-passphrase":{"description":"GPG Private Key Passphrase for the GPG Private Key with which to sign the commits in the PR to be created","required":false,"default":""},"nix-options":{"description":"A space-separated list of options to pass to the nix command","required":false,"default":""},"_internal-strict-mode":{"description":"Whether to fail when any errors are thrown. Used only to test the Action; do not set this in your own workflows.","required":false,"default":false}},"outputs":{"pull-request-number":{"description":"The number of the opened pull request","value":"${{ steps.create-pr.outputs.pull-request-number }}"},"pull-request-url":{"description":"The The URL of the opened pull request.","value":"${{ steps.create-pr.outputs.pull-request-url }}"},"pull-request-operation":{"description":"The pull request operation performed by the action, `created`, `updated` or `closed`.","value":"${{ steps.create-pr.outputs.pull-request-operation }}"}},"runs":{"using":"composite","steps":[{"name":"Import bot's GPG key for signing commits","if":"${{ inputs.sign-commits == 'true' }}","id":"import-gpg","uses":"crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec","with":{"gpg_private_key":"${{ inputs.gpg-private-key }}","fingerprint":"${{ inputs.gpg-fingerprint }}","passphrase":"${{ inputs.gpg-passphrase }}","git_config_global":true,"git_user_signingkey":true,"git_commit_gpgsign":true}},{"name":"Set environment variables (signed commits)","if":"${{ inputs.sign-commits == 'true' }}","shell":"bash","env":{"GIT_AUTHOR_NAME":"${{ steps.import-gpg.outputs.name }}","GIT_AUTHOR_EMAIL":"${{ steps.import-gpg.outputs.email }}","GIT_COMMITTER_NAME":"${{ steps.import-gpg.outputs.name }}","GIT_COMMITTER_EMAIL":"${{ steps.import-gpg.outputs.email }}","TARGETS":"${{ inputs.inputs }}"},"run":"echo \"GIT_AUTHOR_NAME=$GIT_AUTHOR_NAME\" \u003e\u003e $GITHUB_ENV\necho \"GIT_AUTHOR_EMAIL=\u003c$GIT_AUTHOR_EMAIL\u003e\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_NAME=$GIT_COMMITTER_NAME\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_EMAIL=\u003c$GIT_COMMITTER_EMAIL\u003e\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Set environment variables (unsigned commits)","if":"${{ inputs.sign-commits != 'true' }}","shell":"bash","run":"echo \"GIT_AUTHOR_NAME=${{ inputs.git-author-name }}\" \u003e\u003e $GITHUB_ENV\necho \"GIT_AUTHOR_EMAIL=\u003c${{ inputs.git-author-email }}\u003e\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_NAME=${{ inputs.git-committer-name }}\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_EMAIL=\u003c${{ inputs.git-committer-email }}\u003e\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Run update-flake-lock","shell":"bash","run":"node \"$GITHUB_ACTION_PATH/dist/index.js\"","env":{"INPUT_BASE":"${{ inputs.base }}","INPUT_BRANCH":"${{ inputs.branch }}","INPUT_COMMIT-MSG":"${{ inputs.commit-msg }}","INPUT_GIT-AUTHOR-EMAIL":"${{ inputs.git-author-email }}","INPUT_GIT-AUTHOR-NAME":"${{ inputs.git-author-name }}","INPUT_GIT-COMMITTER-EMAIL":"${{ inputs.git-committer-email }}","INPUT_GIT-COMMITTER-NAME":"${{ inputs.git-committer-name }}","INPUT_GPG-FINGERPRINT":"${{ inputs.gpg-fingerprint }}","INPUT_GPG-PASSPHRASE":"${{ inputs.gpg-passphrase }}","INPUT_GPG-PRIVATE-KEY":"${{ inputs.gpg-private-key }}","INPUT_INPUTS":"${{ inputs.inputs }}","INPUT_NIX-OPTIONS":"${{ inputs.nix-options }}","INPUT_PATH-TO-FLAKE-DIR":"${{ inputs.path-to-flake-dir }}","INPUT_PR-ASSIGNEES":"${{ inputs.pr-assignees }}","INPUT_PR-BODY":"${{ inputs.pr-body }}","INPUT_PR-LABELS":"${{ inputs.pr-labels }}","INPUT_PR-REVIEWERS":"${{ inputs.pr-reviewers }}","INPUT_PR-TITLE":"${{ inputs.pr-title }}","INPUT_PULL-REQUEST-NUMBER":"${{ inputs.pull-request-number }}","INPUT_PULL-REQUEST-OPERATION":"${{ inputs.pull-request-operation }}","INPUT_SIGN-COMMITS":"${{ inputs.sign-commits }}","INPUT_TOKEN":"${{ inputs.token }}","INPUT__INTERNAL-STRICT-MODE":"${{ inputs._internal-strict-mode }}"}},{"name":"Save PR Body as file","uses":"DamianReeves/write-file-action@6929a9a6d1807689191dcc8bbe62b54d70a32b42","with":{"path":"pr_body.template","contents":"${{ inputs.pr-body }}"},"env":{}},{"name":"Set additional env variables (GIT_COMMIT_MESSAGE)","shell":"bash","run":"DELIMITER=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)\nCOMMIT_MESSAGE=\"$(git log --format=%b -n 1)\"\necho \"GIT_COMMIT_MESSAGE\u003c\u003c$DELIMITER\" \u003e\u003e $GITHUB_ENV\necho \"$COMMIT_MESSAGE\" \u003e\u003e $GITHUB_ENV\necho \"$DELIMITER\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMIT_MESSAGE is: ${COMMIT_MESSAGE}\"\n"},{"name":"Interpolate PR Body","uses":"pedrolamas/handlebars-action@2995d7eadacbc8f2f6ab8431a01d84a5fa3b8bb4","with":{"files":"pr_body.template","output-filename":"pr_body.txt"}},{"name":"Read pr_body.txt","id":"pr_body","uses":"juliangruber/read-file-action@b549046febe0fe86f8cb4f93c24e284433f9ab58","with":{"path":"pr_body.txt"}},{"name":"Remove PR body template files","shell":"bash","run":"rm -f pr_body.txt pr_body.template"},{"name":"Create PR","id":"create-pr","uses":"peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412","with":{"base":"${{ inputs.base }}","branch":"${{ inputs.branch }}","delete-branch":true,"committer":"${{ env.GIT_COMMITTER_NAME }} ${{ env.GIT_COMMITTER_EMAIL }}","author":"${{ env.GIT_AUTHOR_NAME }} ${{ env.GIT_AUTHOR_EMAIL }}","title":"${{ inputs.pr-title }}","token":"${{ inputs.token }}","assignees":"${{ inputs.pr-assignees }}","labels":"${{ inputs.pr-labels }}","reviewers":"${{ inputs.pr-reviewers }}","body":"${{ steps.pr_body.outputs.content }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":37022825,"uuid":"418625766","full_name":"DeterminateSystems/update-flake-lock","owner":"DeterminateSystems","description":"Automatically refresh your Nix Flakes.","archived":false,"fork":false,"pushed_at":"2025-10-05T00:01:11.000Z","size":5562,"stargazers_count":339,"open_issues_count":35,"forks_count":37,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-09T15:04:49.746Z","etag":null,"topics":["nix","nix-flake"],"latest_commit_sha":null,"homepage":"","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/DeterminateSystems.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":"2021-10-18T18:39:57.000Z","updated_at":"2025-10-03T22:40:37.000Z","dependencies_parsed_at":"2022-07-11T15:22:20.848Z","dependency_job_id":"51246c1b-b8f5-439e-b1a1-8864f06d4d32","html_url":"https://github.com/DeterminateSystems/update-flake-lock","commit_stats":{"total_commits":126,"total_committers":24,"mean_commits":5.25,"dds":0.7619047619047619,"last_synced_commit":"965531f33224d3e24e8168f9b35da1d9d6ad042c"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeterminateSystems","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/sbom","scorecard":{"id":39632,"data":{"date":"2025-08-11","repo":{"name":"github.com/DeterminateSystems/update-flake-lock","commit":"d6b471071f1d497ac41ef90623a618ba811bc98c"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.8,"checks":[{"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":"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":"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":"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":"Maintained","score":10,"reason":"30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":["Info: jobLevel 'contents' permission set to 'read': .github/workflows/ci.yml:13","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/update.yml:11","Warn: no topLevel permission defined: .github/workflows/ci.yml:1","Warn: no topLevel permission defined: .github/workflows/update.yml:1","Warn: no topLevel permission defined: .github/workflows/validate.yml:1"],"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: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:15: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:23: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/ci.yml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/update.yml:17: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/update.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update.yml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/update.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/update.yml:19: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/update.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/validate.yml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/validate.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/validate.yml:16: update your workflow using https://app.stepsecurity.io/secureworkflow/DeterminateSystems/update-flake-lock/validate.yml/main?enable=pin","Info:   0 out of   3 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   6 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":"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: 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":"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":5,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Info: 'branch protection settings apply to administrators' is required to merge on branch 'main'","Warn: 'stale review dismissal' is disabled on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Warn: codeowners review is not required on branch 'main'","Warn: 'last push approval' is disabled on branch 'main'","Info: status check found to merge onto on branch 'main'","Info: PRs are required in order to make changes on branch 'main'"],"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 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":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"}}]},"last_synced_at":"2025-08-14T21:10:31.066Z","repository_id":37022825,"created_at":"2025-08-14T21:10:31.066Z","updated_at":"2025-08-14T21:10:31.066Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005473,"owners_count":26083902,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"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":"DeterminateSystems","name":"Determinate Systems","uuid":"80991770","kind":"organization","description":"The best software development toolkit for Nix and Flakes ❄️","email":"hello@determinate.systems","website":"https://determinate.systems/","location":"Everywhere","twitter":"DeterminateSys","company":null,"icon_url":"https://avatars.githubusercontent.com/u/80991770?v=4","repositories_count":101,"last_synced_at":"2024-04-15T04:13:06.582Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/DeterminateSystems","funding_links":[],"total_stars":4896,"followers":416,"following":0,"created_at":"2022-11-14T07:07:03.271Z","updated_at":"2024-04-15T04:13:54.013Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeterminateSystems","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeterminateSystems/repositories"},"tags":[{"name":"v27","sha":"c5930b397a673a70ca70be06020e943aeac310a1","kind":"commit","published_at":"2025-07-14T22:46:32.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v27","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v27","dependencies_parsed_at":"2025-07-16T04:59:33.913Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v27","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v27","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v27/manifests"},{"name":"v26","sha":"9070c8924674eb79cc49246b8b6f2e14f4378eb0","kind":"commit","published_at":"2025-07-03T13:23:26.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v26","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v26","dependencies_parsed_at":"2025-07-05T04:21:27.736Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v26","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v26","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v26/manifests"},{"name":"v25","sha":"428c2b58a4b7414dabd372acb6a03dba1084d3ab","kind":"commit","published_at":"2025-05-16T13:33:39.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v25","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v25","dependencies_parsed_at":"2025-05-25T04:10:00.278Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v25","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v25","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v25/manifests"},{"name":"v24","sha":"a2bbe0274e3a0c4194390a1e445f734c597ebc37","kind":"commit","published_at":"2024-09-04T18:14:50.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v24","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v24","dependencies_parsed_at":"2024-09-11T05:12:47.721Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v24","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v24","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v24/manifests"},{"name":"v23","sha":"db4ee38117a597ea8df8f7f75a187dd65093eade","kind":"commit","published_at":"2024-06-28T21:11:30.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v23","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v23","dependencies_parsed_at":null,"dependency_job_id":"c1fd8834-b7a0-4821-bddb-d38e2965d0f8","purl":"pkg:github/DeterminateSystems/update-flake-lock@v23","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v23","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v23/manifests"},{"name":"v22","sha":"bba6a453b747fa3bd82895a4a296c3d0e3cfabd4","kind":"commit","published_at":"2024-06-03T16:18:41.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v22","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v22","dependencies_parsed_at":"2024-06-06T12:11:12.411Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v22","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v22","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v22/manifests"},{"name":"v21","sha":"a3ccb8f59719c48d6423e97744560221bcf7a3fa","kind":"commit","published_at":"2024-02-29T15:07:00.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v21","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v21","dependencies_parsed_at":"2024-03-02T04:53:25.899Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v21","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v21","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v21/manifests"},{"name":"v20","sha":"da2fd6f2563fe3e4f2af8be73b864088564e263d","kind":"commit","published_at":"2023-08-24T04:12:15.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v20","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v20","dependencies_parsed_at":"2023-08-25T04:26:55.318Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v20","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v20","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v20/manifests"},{"name":"v19","sha":"dec3bc3c9b11c3b9d547f47dfb579b91a6051603","kind":"commit","published_at":"2023-03-29T18:11:22.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v19","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v19","dependencies_parsed_at":"2023-06-02T00:21:17.948Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v19","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v19","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v19/manifests"},{"name":"v18","sha":"bc75a5b55ead11400bd320de2a68f6421c4e316c","kind":"commit","published_at":"2023-03-27T16:17:55.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v18","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v18","dependencies_parsed_at":"2023-06-02T00:21:16.638Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v18","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v18","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v18/manifests"},{"name":"v17","sha":"085c3a0b6d19c25eb9ab226a21efc1b60022fb83","kind":"commit","published_at":"2023-03-06T13:55:07.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v17","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v17","dependencies_parsed_at":"2023-06-02T00:21:16.296Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v17","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v17","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v17/manifests"},{"name":"v16","sha":"a0c5484d59e7d32ccfb416fe8bae8db583b9febb","kind":"commit","published_at":"2023-01-19T15:29:15.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v16","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v16","dependencies_parsed_at":"2023-06-02T00:21:17.073Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v16","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v16/manifests"},{"name":"v15","sha":"aa092a7430ae3d1fa7ff69a1e3f85d16530a74ef","kind":"commit","published_at":"2022-11-28T16:02:01.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v15","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v15","dependencies_parsed_at":"2023-06-01T10:17:31.792Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v15","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v15/manifests"},{"name":"v14","sha":"0ad9a550487687dcea451e57e09d99725e664d77","kind":"commit","published_at":"2022-09-14T14:46:21.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v14","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v14","dependencies_parsed_at":"2023-06-01T10:17:34.205Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v14","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v14/manifests"},{"name":"v13","sha":"03bec486c7f5651192eff51676d85f0c3d586e16","kind":"commit","published_at":"2022-08-19T18:42:26.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v13","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v13","dependencies_parsed_at":"2023-05-30T21:34:14.122Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v13","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v13/manifests"},{"name":"v12","sha":"4cf0d5d8d620636481d60014e23b38231e0927cc","kind":"commit","published_at":"2022-07-29T14:49:05.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v12","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v12","dependencies_parsed_at":"2023-05-30T21:34:15.044Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v12","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v12/manifests"},{"name":"v11","sha":"8c1a4653b4d4818c5cf5881a3c71f52d8c4eb1e9","kind":"commit","published_at":"2022-07-27T15:43:56.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v11","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v11","dependencies_parsed_at":"2023-05-30T21:34:16.024Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v11/manifests"},{"name":"v10","sha":"2026a4bf1a16208cd40c3e2fa414d2c25befc6d6","kind":"commit","published_at":"2022-06-22T19:44:48.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v10","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v10","dependencies_parsed_at":"2023-05-30T21:34:16.924Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v10/manifests"},{"name":"v9","sha":"b044cabb7988ec21289924a967891203e5630b2d","kind":"commit","published_at":"2022-04-22T18:46:11.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v9","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v9","dependencies_parsed_at":"2023-05-30T21:34:17.749Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v9/manifests"},{"name":"v8","sha":"e00d99112ba7ab57997f83f2356a1d0e9100bee5","kind":"commit","published_at":"2022-02-01T18:43:22.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v8","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v8","dependencies_parsed_at":"2023-05-30T21:34:19.526Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v8/manifests"},{"name":"v7","sha":"d65c4f4a499ef96e44c7eaee4a5faf4ec520c071","kind":"commit","published_at":"2022-01-26T17:08:43.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v7","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v7","dependencies_parsed_at":"2023-05-30T21:34:20.083Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v7/manifests"},{"name":"v6","sha":"e2447fec26dca230c6d472607faadcf1a9ec72ee","kind":"commit","published_at":"2021-12-03T20:07:52.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v6","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v6","dependencies_parsed_at":"2023-05-30T21:34:20.624Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v6/manifests"},{"name":"v5","sha":"30320f06f5c09baa2df993a774f6850cee78976c","kind":"commit","published_at":"2021-12-02T20:23:46.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v5","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v5","dependencies_parsed_at":"2023-05-30T21:34:21.477Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v5/manifests"},{"name":"v4","sha":"958240e9be15855d3c9a85654f0e6f2007eca3cb","kind":"commit","published_at":"2021-10-27T18:17:14.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v4","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v4","dependencies_parsed_at":"2023-05-30T21:34:21.750Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v4/manifests"},{"name":"v3","sha":"64a8cc193debd5710ddfd8b30fabfb5a415cdb4a","kind":"commit","published_at":"2021-10-26T16:22:51.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v3","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v3","dependencies_parsed_at":"2023-05-30T21:34:22.176Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v3/manifests"},{"name":"v2","sha":"127e3e96afcddf2191a4b3d93adb16a139b873b2","kind":"commit","published_at":"2021-10-19T19:02:03.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v2","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v2","dependencies_parsed_at":"2023-05-30T21:34:22.904Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v2/manifests"},{"name":"v1","sha":"4d349424c5d908101c117e9f333d5620ff2d2326","kind":"commit","published_at":"2021-10-18T19:54:45.000Z","download_url":"https://codeload.github.com/DeterminateSystems/update-flake-lock/tar.gz/v1","html_url":"https://github.com/DeterminateSystems/update-flake-lock/releases/tag/v1","dependencies_parsed_at":"2023-05-30T21:34:23.328Z","dependency_job_id":null,"purl":"pkg:github/DeterminateSystems/update-flake-lock@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/tags/v1/manifests"}]},"repo_metadata_updated_at":"2025-10-11T07:30:15.107Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":283,"rankings":{"downloads":null,"dependent_repos_count":2.297575661543337,"dependent_packages_count":0.0,"stargazers_count":1.5338298209475518,"forks_count":3.3718903501822215,"docker_downloads_count":null,"average":1.8008239581682777},"purl":"pkg:githubactions/DeterminateSystems/update-flake-lock","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/DeterminateSystems/update-flake-lock","docker_dependents_count":1,"docker_downloads_count":666,"usage_url":"https://repos.ecosyste.ms/usage/actions/DeterminateSystems/update-flake-lock","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/DeterminateSystems/update-flake-lock/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-10-04T07:13:57.907Z","issues_count":51,"pull_requests_count":237,"avg_time_to_close_issue":1468660.5,"avg_time_to_close_pull_request":2789705.8834951455,"issues_closed_count":28,"pull_requests_closed_count":206,"pull_request_authors_count":28,"issue_authors_count":40,"avg_comments_per_issue":1.843137254901961,"avg_comments_per_pull_request":0.25316455696202533,"merged_pull_requests_count":167,"bot_issues_count":0,"bot_pull_requests_count":67,"past_year_issues_count":9,"past_year_pull_requests_count":115,"past_year_avg_time_to_close_issue":837.0,"past_year_avg_time_to_close_pull_request":636701.1612903225,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":93,"past_year_pull_request_authors_count":7,"past_year_issue_authors_count":9,"past_year_avg_comments_per_issue":0.2222222222222222,"past_year_avg_comments_per_pull_request":0.034782608695652174,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":30,"past_year_merged_pull_requests_count":79,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeterminateSystems%2Fupdate-flake-lock/issues","maintainers":[{"login":"grahamc","count":24,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/grahamc"},{"login":"cole-h","count":24,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cole-h"},{"login":"lucperkins","count":18,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lucperkins"},{"login":"colemickens","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/colemickens"},{"login":"flexiondotorg","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/flexiondotorg"}],"active_maintainers":[{"login":"grahamc","count":14,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/grahamc"},{"login":"lucperkins","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lucperkins"},{"login":"colemickens","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/colemickens"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/DeterminateSystems%2Fupdate-flake-lock/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/DeterminateSystems%2Fupdate-flake-lock/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/DeterminateSystems%2Fupdate-flake-lock/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/DeterminateSystems%2Fupdate-flake-lock/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/DeterminateSystems%2Fupdate-flake-lock/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/DeterminateSystems%2Fupdate-flake-lock/codemeta","maintainers":[]}