{"id":6326025,"name":"easimon/maximize-build-space","ecosystem":"actions","description":"Maximize the available disk space for your build job","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/easimon/maximize-build-space","keywords_array":["azure","github-actions"],"namespace":"easimon","versions_count":10,"first_release_published_at":"2020-08-14T15:32:40.000Z","latest_release_published_at":"2023-12-04T16:45:21.000Z","latest_release_number":"v10","last_synced_at":"2026-09-24T03:11:11.875Z","created_at":"2023-02-13T12:58:53.659Z","updated_at":"2026-09-24T03:11:11.875Z","registry_url":"https://github.com/easimon/maximize-build-space","install_command":null,"documentation_url":null,"metadata":{"name":"Maximize build disk space","description":"Maximize the available disk space for your build job","branding":{"icon":"crop","color":"orange"},"inputs":{"root-reserve-mb":{"description":"Space to be left free on the root filesystem, in Megabytes.","required":false,"default":"1024"},"temp-reserve-mb":{"description":"Space to be left free on the temp filesystem (/mnt), in Megabytes.","required":false,"default":"100"},"swap-size-mb":{"description":"Swap space to create, in Megabytes.","required":false,"default":"4096"},"overprovision-lvm":{"description":"Create the LVM disk images as sparse files, making the space required for the LVM image files *appear* unused on the\nhosting volumes until actually allocated. Use with care, this can lead to surprising out-of-disk-space situations.\nYou should prefer adjusting root-reserve-mb/temp-reserve-mb over using this option.\n","required":false,"default":"false"},"build-mount-path":{"description":"Absolute path to the mount point where the build space will be available, defaults to $GITHUB_WORKSPACE if unset.","required":false},"build-mount-path-ownership":{"description":"Ownership of the mount point path, defaults to standard \"runner\" user and group.","required":false,"default":"runner:runner"},"pv-loop-path":{"description":"Absolute file path for the LVM image created on the root filesystem, the default is usually fine.","required":false,"default":"/pv.img"},"tmp-pv-loop-path":{"description":"Absolute file path for the LVM image created on the temp filesystem, the default is usually fine. Must reside on /mnt","required":false,"default":"/mnt/tmp-pv.img"},"remove-dotnet":{"description":"Removes .NET runtime and libraries. (frees ~17 GB)","required":false,"default":"false"},"remove-android":{"description":"Removes Android SDKs and Tools. (frees ~11 GB)","required":false,"default":"false"},"remove-haskell":{"description":"Removes GHC (Haskell) artifacts. (frees ~2.7 GB)","required":false,"default":"false"},"remove-codeql":{"description":"Removes CodeQL Action Bundles. (frees ~5.4 GB)","required":false,"default":"false"},"remove-docker-images":{"description":"Removes cached Docker images. (frees ~3 GB)","required":false,"default":"false"}},"runs":{"using":"composite","steps":[{"name":"Disk space report before modification","shell":"bash","run":"echo \"Memory and swap:\"\nsudo free -h\necho\nsudo swapon --show\necho\n\necho \"Available storage:\"\nsudo df -h\necho\n"},{"name":"Maximize build disk space","shell":"bash","run":"set -euo pipefail\n\nBUILD_MOUNT_PATH=\"${{ inputs.build-mount-path }}\"\nif [[ -z \"${BUILD_MOUNT_PATH}\" ]]; then\n  BUILD_MOUNT_PATH=\"${GITHUB_WORKSPACE}\"\nfi\n\necho \"Arguments:\"\necho\necho \"  Root reserve:      ${{ inputs.root-reserve-mb }} MiB\"\necho \"  Temp reserve:      ${{ inputs.temp-reserve-mb }} MiB\"\necho \"  Swap space:        ${{ inputs.swap-size-mb }} MiB\"\necho \"  Overprovision LVM: ${{ inputs.overprovision-lvm }}\"\necho \"  Mount path:        ${BUILD_MOUNT_PATH}\"\necho \"  Root PV loop path: ${{ inputs.pv-loop-path }}\"\necho \"  Temp PV loop path: ${{ inputs.tmp-pv-loop-path }}\"\necho -n \"  Removing:     \"\nif [[ ${{ inputs.remove-dotnet }} == 'true' ]]; then\n  echo -n \"dotnet \"\nfi\nif [[ ${{ inputs.remove-android }} == 'true' ]]; then\n  echo -n \"android \"\nfi\nif [[ ${{ inputs.remove-haskell }} == 'true' ]]; then\n  echo -n \"haskell \"\nfi\nif [[ ${{ inputs.remove-codeql }} == 'true' ]]; then\n  echo -n \"codeql \"\nfi\nif [[ ${{ inputs.remove-docker-images }} == 'true' ]]; then\n  echo -n \"docker \"\nfi\necho\n\n# store owner of $GITHUB_WORKSPACE in case the action deletes it\nWORKSPACE_OWNER=\"$(stat -c '%U:%G' \"${GITHUB_WORKSPACE}\")\"\n\n# ensure mount path exists before the action\nsudo mkdir -p \"${BUILD_MOUNT_PATH}\"\nsudo find \"${BUILD_MOUNT_PATH}\" -maxdepth 0 ! -empty -exec echo 'WARNING: directory [{}] is not empty, data loss might occur. Content:' \\; -exec ls -al \"{}\" \\;\n\necho \"Removing unwanted software... \"\nif [[ ${{ inputs.remove-dotnet }} == 'true' ]]; then\n  sudo rm -rf /usr/share/dotnet\nfi\nif [[ ${{ inputs.remove-android }} == 'true' ]]; then\n  sudo rm -rf /usr/local/lib/android\nfi\nif [[ ${{ inputs.remove-haskell }} == 'true' ]]; then\n  sudo rm -rf /opt/ghc\nfi\nif [[ ${{ inputs.remove-codeql }} == 'true' ]]; then\n  sudo rm -rf /opt/hostedtoolcache/CodeQL\nfi\nif [[ ${{ inputs.remove-docker-images }} == 'true' ]]; then\n  sudo docker image prune --all --force\nfi\necho \"... done\"\n\nVG_NAME=buildvg\n\n# github runners have an active swap file in /mnt/swapfile\n# we want to reuse the temp disk, so first unmount swap and clean the temp disk\necho \"Unmounting and removing swap file.\"\nsudo swapoff -a\nsudo rm -f /mnt/swapfile\n\necho \"Creating LVM Volume.\"\necho \"  Creating LVM PV on root fs.\"\n# create loop pv image on root fs\nROOT_RESERVE_KB=$(expr ${{ inputs.root-reserve-mb }} \\* 1024)\nROOT_FREE_KB=$(df --block-size=1024 --output=avail / | tail -1)\nROOT_LVM_SIZE_KB=$(expr $ROOT_FREE_KB - $ROOT_RESERVE_KB)\nROOT_LVM_SIZE_BYTES=$(expr $ROOT_LVM_SIZE_KB \\* 1024)\nsudo touch \"${{ inputs.pv-loop-path }}\" \u0026\u0026 sudo fallocate -z -l \"${ROOT_LVM_SIZE_BYTES}\" \"${{ inputs.pv-loop-path }}\"\nexport ROOT_LOOP_DEV=$(sudo losetup --find --show \"${{ inputs.pv-loop-path }}\")\nsudo pvcreate -f \"${ROOT_LOOP_DEV}\"\n\n# create pv on temp disk\necho \"  Creating LVM PV on temp fs.\"\nTMP_RESERVE_KB=$(expr ${{ inputs.temp-reserve-mb }} \\* 1024)\nTMP_FREE_KB=$(df --block-size=1024 --output=avail /mnt | tail -1)\nTMP_LVM_SIZE_KB=$(expr $TMP_FREE_KB - $TMP_RESERVE_KB)\nTMP_LVM_SIZE_BYTES=$(expr $TMP_LVM_SIZE_KB \\* 1024)\nsudo touch \"${{ inputs.tmp-pv-loop-path }}\" \u0026\u0026 sudo fallocate -z -l \"${TMP_LVM_SIZE_BYTES}\" \"${{ inputs.tmp-pv-loop-path }}\"\nexport TMP_LOOP_DEV=$(sudo losetup --find --show \"${{ inputs.tmp-pv-loop-path }}\")\nsudo pvcreate -f \"${TMP_LOOP_DEV}\"\n\n# create volume group from these pvs\nsudo vgcreate \"${VG_NAME}\" \"${TMP_LOOP_DEV}\" \"${ROOT_LOOP_DEV}\"\n\necho \"Recreating swap\"\n# create and activate swap\nsudo lvcreate -L \"${{ inputs.swap-size-mb }}M\" -n swap \"${VG_NAME}\"\nsudo mkswap \"/dev/mapper/${VG_NAME}-swap\"\nsudo swapon \"/dev/mapper/${VG_NAME}-swap\"\n\necho \"Creating build volume\"\n# create and mount build volume\nsudo lvcreate -l 100%FREE -n buildlv \"${VG_NAME}\"\nif [[ ${{ inputs.overprovision-lvm }} == 'true' ]]; then\n  sudo mkfs.ext4 -m0 \"/dev/mapper/${VG_NAME}-buildlv\"\nelse\n  sudo mkfs.ext4 -Enodiscard -m0 \"/dev/mapper/${VG_NAME}-buildlv\"\nfi\nsudo mount \"/dev/mapper/${VG_NAME}-buildlv\" \"${BUILD_MOUNT_PATH}\"\nsudo chown -R \"${{ inputs.build-mount-path-ownership }}\" \"${BUILD_MOUNT_PATH}\"\n\n# if build mount path is a parent of $GITHUB_WORKSPACE, and has been deleted, recreate it\nif [[ ! -d \"${GITHUB_WORKSPACE}\" ]]; then\n  sudo mkdir -p \"${GITHUB_WORKSPACE}\"\n  sudo chown -R \"${WORKSPACE_OWNER}\" \"${GITHUB_WORKSPACE}\"\nfi\n"},{"name":"Disk space report after modification","shell":"bash","run":"echo \"Memory and swap:\"\nsudo free -h\necho\nsudo swapon --show\necho\n\necho \"Available storage:\"\nsudo df -h\n"}]},"default_branch":"master","path":null},"repo_metadata":{"id":38615979,"uuid":"287493492","full_name":"easimon/maximize-build-space","owner":"easimon","description":"Github action to maximize the available disk space on Github runners","archived":false,"fork":false,"pushed_at":"2025-03-28T16:56:44.000Z","size":128,"stargazers_count":524,"open_issues_count":18,"forks_count":114,"subscribers_count":4,"default_branch":"master","last_synced_at":"2026-09-07T13:34:45.943Z","etag":null,"topics":["azure","github-actions"],"latest_commit_sha":null,"homepage":"","language":null,"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/easimon.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2020-08-14T09:17:39.000Z","updated_at":"2026-09-04T01:43:52.000Z","dependencies_parsed_at":"2023-10-16T10:45:38.539Z","dependency_job_id":"eb89ee19-1c66-42d1-9fe9-c96c6a93e79d","html_url":"https://github.com/easimon/maximize-build-space","commit_stats":{"total_commits":41,"total_committers":10,"mean_commits":4.1,"dds":0.5853658536585367,"last_synced_commit":"fc881a613ad2a34aca9c9624518214ebc21dfc0c"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/easimon/maximize-build-space","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/easimon","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/sbom","scorecard":{"id":363961,"data":{"date":"2025-08-11","repo":{"name":"github.com/easimon/maximize-build-space","commit":"c28619d8999a147d5e09c1199f84ff6af6ad5794"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.1,"checks":[{"name":"Maintained","score":0,"reason":"0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":3,"reason":"Found 6/17 approved changesets -- score normalized to 3","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":"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":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:24: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:38: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:94: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:151: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:165: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:177: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test.yaml:183: update your workflow using https://app.stepsecurity.io/secureworkflow/easimon/maximize-build-space/test.yaml/master?enable=pin","Info:   0 out of   7 GitHub-owned 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":"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":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: no topLevel permission defined: .github/workflows/test.yaml:1","Info: no jobLevel write permissions found"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"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":"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 27 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-18T11:26:49.232Z","repository_id":38615979,"created_at":"2025-08-18T11:26:49.232Z","updated_at":"2025-08-18T11:26:49.232Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":341189360,"owners_count":37123030,"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-07T02:00:07.396Z","response_time":63,"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":"easimon","name":"Markus Dobel","uuid":"1749657","kind":"user","description":"","email":"","website":"https://blog.dobel.click/","location":"Frankfurt am Main, Germany","twitter":"mdobel","company":null,"icon_url":"https://avatars.githubusercontent.com/u/1749657?u=401a6d45b7e09df19752811248b027db772749e0\u0026v=4","repositories_count":6,"last_synced_at":"2023-03-07T06:50:31.817Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/easimon","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-17T05:35:18.273Z","updated_at":"2023-03-07T06:50:31.822Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/easimon","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/easimon/repositories"},"tags":[{"name":"v10","sha":"fc881a613ad2a34aca9c9624518214ebc21dfc0c","kind":"commit","published_at":"2023-12-04T16:45:21.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v10","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v10","dependencies_parsed_at":"2023-12-09T04:43:19.046Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v10/manifests"},{"name":"v9","sha":"bb67daa4a202a2ea017b6410ea1f07da0c9a0251","kind":"commit","published_at":"2023-11-28T11:39:37.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v9","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v9","dependencies_parsed_at":"2023-12-01T04:06:29.824Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v9/manifests"},{"name":"v8","sha":"09ba4bd25af416c42e0142983065fcca855807a5","kind":"commit","published_at":"2023-08-13T15:07:27.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v8","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v8","dependencies_parsed_at":"2023-08-15T05:38:27.451Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v8/manifests"},{"name":"v7","sha":"67afc2d7662c9d296547435e7605cc57a1df46f3","kind":"commit","published_at":"2023-03-31T16:47:59.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v7","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v7","dependencies_parsed_at":"2023-06-02T00:22:41.840Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v7/manifests"},{"name":"v6","sha":"ddc68f19a68a493dbc537695969f706f175c6115","kind":"commit","published_at":"2022-06-28T13:34:12.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v6","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v6","dependencies_parsed_at":"2023-05-30T20:23:49.043Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v6/manifests"},{"name":"v5","sha":"9ea1a0d4af4788c122cc820dbf9652ebb93dec5a","kind":"commit","published_at":"2022-01-27T07:22:44.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v5","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v5","dependencies_parsed_at":"2023-05-30T20:23:49.255Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v5/manifests"},{"name":"v4","sha":"b4d02c14493a9653fe7af06cc89ca5298071c66e","kind":"commit","published_at":"2021-03-25T17:47:00.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v4","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v4","dependencies_parsed_at":"2023-05-30T20:23:49.540Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v4/manifests"},{"name":"v3","sha":"bce3557b1246f83f442cdd8bed458a4d8503f431","kind":"commit","published_at":"2021-02-15T14:58:24.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v3","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v3","dependencies_parsed_at":"2023-05-30T20:23:49.664Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v3/manifests"},{"name":"v2","sha":"c9c66edff9edd5934f075531636172a327f1d81e","kind":"commit","published_at":"2021-01-05T16:55:15.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v2","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v2","dependencies_parsed_at":"2023-05-30T20:23:49.760Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v2/manifests"},{"name":"v1","sha":"ad3a54f8b164ae1b4e13a7e20e5a575e2ec1247f","kind":"commit","published_at":"2020-08-14T15:32:40.000Z","download_url":"https://codeload.github.com/easimon/maximize-build-space/tar.gz/v1","html_url":"https://github.com/easimon/maximize-build-space/releases/tag/v1","dependencies_parsed_at":"2023-05-30T20:23:49.895Z","dependency_job_id":null,"purl":"pkg:github/easimon/maximize-build-space@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/tags/v1/manifests"}]},"repo_metadata_updated_at":"2026-09-07T16:07:18.311Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":224,"rankings":{"downloads":null,"dependent_repos_count":2.744414514340041,"dependent_packages_count":0.0,"stargazers_count":0.9190302646173348,"forks_count":1.5211535414355886,"docker_downloads_count":null,"average":1.2961495800982412},"purl":"pkg:githubactions/easimon/maximize-build-space","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/easimon/maximize-build-space","docker_dependents_count":1,"docker_downloads_count":526,"usage_url":"https://repos.ecosyste.ms/usage/actions/easimon/maximize-build-space","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/easimon/maximize-build-space/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2026-09-07T12:35:59.002Z","issues_count":32,"pull_requests_count":28,"avg_time_to_close_issue":3158294.9411764704,"avg_time_to_close_pull_request":259201.90476190476,"issues_closed_count":17,"pull_requests_closed_count":21,"pull_request_authors_count":17,"issue_authors_count":29,"avg_comments_per_issue":2.03125,"avg_comments_per_pull_request":1.0357142857142858,"merged_pull_requests_count":17,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":3,"past_year_pull_requests_count":3,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":124.0,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":1,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":3,"past_year_avg_comments_per_issue":2.0,"past_year_avg_comments_per_pull_request":1.6666666666666667,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/easimon%2Fmaximize-build-space/issues","maintainers":[{"login":"easimon","count":10,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/easimon"}],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/easimon%2Fmaximize-build-space/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/easimon%2Fmaximize-build-space/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/easimon%2Fmaximize-build-space/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/easimon%2Fmaximize-build-space/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/easimon%2Fmaximize-build-space/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/easimon%2Fmaximize-build-space/codemeta","maintainers":[]}