{"id":5801041,"name":"julia-actions/cache","ecosystem":"actions","description":"Cache Julia using actions/cache","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/julia-actions/cache","keywords_array":["actions","cache","github-actions","julia"],"namespace":"julia-actions","versions_count":23,"first_release_published_at":"2021-12-26T14:34:48.000Z","latest_release_published_at":"2024-01-05T01:29:52.000Z","latest_release_number":"v1.5.0","last_synced_at":"2026-04-01T12:04:34.960Z","created_at":"2023-01-04T12:45:07.941Z","updated_at":"2026-05-22T18:04:37.006Z","registry_url":"https://github.com/julia-actions/cache","install_command":null,"documentation_url":null,"metadata":{"name":"Cache Julia artifacts, packages and registry","description":"Cache Julia using actions/cache","author":"Sascha Mann, Rik Huijzer, and contributors","branding":{"icon":"archive","color":"purple"},"inputs":{"cache-name":{"description":"The cache key prefix. The key body automatically includes the OS and, unless disabled, the matrix vars. Include any other parameters/details in this prefix to ensure one unique cache key per concurrent job type.","default":"julia-cache;workflow=${{ github.workflow }};job=${{ github.job }}"},"include-matrix":{"description":"Whether to include the matrix values when constructing the cache key.","default":"true"},"depot":{"description":"Path to a Julia depot directory where cached data will be saved to and restored from.","default":""},"cache-artifacts":{"description":"Whether to cache the depot's `artifacts` directory.","default":"true"},"cache-packages":{"description":"Whether to cache the depot's `packages` directory.","default":"true"},"cache-registries":{"description":"Whether to cache the depot's `registries` directory.","default":"true"},"cache-compiled":{"description":"Whether to cache the depot's `compiled` directory.","default":"true"},"cache-scratchspaces":{"description":"Whether to cache the depot's `scratchspaces` directory.","default":"true"},"cache-logs":{"description":"Whether to cache the depot's `logs` directory. This helps automatic `Pkg.gc()` keep the cache size down.","default":"true"},"delete-old-caches":{"description":"Whether to delete old caches for the given key.","default":"true"},"token":{"description":"A GitHub PAT. Requires `repo` scope to enable the deletion of old caches.","default":"${{ github.token }}"}},"outputs":{"cache-hit":{"description":"A boolean value to indicate an exact match was found for the primary key. Returns \"\" when the key is new. Forwarded from actions/cache.","value":"${{ steps.hit.outputs.cache-hit }}"}},"runs":{"using":"composite","steps":[{"name":"Install jq","if":"${{ !startsWith(runner.name, 'GitHub Actions') }}","uses":"dcarbone/install-jq-action@v2.1.0","with":{"force":false}},{"id":"paths","run":"if [ -n \"${{ inputs.depot }}\" ]; then\n    depot=\"${{ inputs.depot }}\"\nelif [ -n \"$JULIA_DEPOT_PATH\" ]; then\n    # Use the first depot path\n    depot=$(echo $JULIA_DEPOT_PATH | cut -d$PATH_DELIMITER -f1)\nelse\n    depot=\"~/.julia\"\nfi\necho \"depot=$depot\" \u003e\u003e $GITHUB_OUTPUT\n[ \"${{ inputs.cache-artifacts }}\" = \"true\" ] \u0026\u0026 A_PATH=\"${depot}/artifacts\"\necho \"artifacts-path=$A_PATH\" \u003e\u003e $GITHUB_OUTPUT\n[ \"${{ inputs.cache-packages }}\" = \"true\" ] \u0026\u0026 P_PATH=\"${depot}/packages\"\necho \"packages-path=$P_PATH\" \u003e\u003e $GITHUB_OUTPUT\n[ \"${{ inputs.cache-registries }}\" = \"true\" ] \u0026\u0026 R_PATH=\"${depot}/registries\"\necho \"registries-path=$R_PATH\" \u003e\u003e $GITHUB_OUTPUT\n[ \"${{ inputs.cache-compiled }}\" = \"true\" ] \u0026\u0026 PCC_PATH=\"${depot}/compiled\"\necho \"compiled-path=$PCC_PATH\" \u003e\u003e $GITHUB_OUTPUT\n[ \"${{ inputs.cache-scratchspaces }}\" = \"true\" ] \u0026\u0026 S_PATH=\"${depot}/scratchspaces\"\necho \"scratchspaces-path=$S_PATH\" \u003e\u003e $GITHUB_OUTPUT\n[ \"${{ inputs.cache-logs }}\" = \"true\" ] \u0026\u0026 L_PATH=\"${depot}/logs\"\necho \"logs-path=$L_PATH\" \u003e\u003e $GITHUB_OUTPUT\n","shell":"bash","env":{"PATH_DELIMITER":"${{ runner.OS == 'Windows' \u0026\u0026 ';' || ':' }}"}},{"name":"Generate Keys","id":"keys","run":"# `matrix_key` joins all of matrix keys/values (including nested objects) to ensure that concurrent runs each use a unique cache key.\n# When `matrix` isn't set for the job then `MATRIX_JSON=null`.\nif [ \"${{ inputs.include-matrix }}\" == \"true\" ] \u0026\u0026 [ \"$MATRIX_JSON\" != \"null\" ]; then\n  matrix_key=$(echo \"$MATRIX_JSON\" | jq 'paths(type != \"object\") as $p | ($p | join(\"-\")) + \"=\" + (getpath($p) | tostring)' | jq -rs 'join(\";\") | . + \";\"')\nfi\nrestore_key=\"${{ inputs.cache-name }};os=${{ runner.os }};${matrix_key}\"\nkey=\"${restore_key}run_id=${{ github.run_id }};run_attempt=${{ github.run_attempt }}\"\necho \"restore-key=${restore_key}\" \u003e\u003e $GITHUB_OUTPUT\necho \"key=${key}\" \u003e\u003e $GITHUB_OUTPUT\n","shell":"bash","env":{"MATRIX_JSON":"${{ toJSON(matrix) }}"}},{"uses":"actions/cache@4d4ae6ae148a43d0fd1eda1800170683e9882738","id":"cache","with":{"path":"${{ steps.paths.outputs.artifacts-path }}\n${{ steps.paths.outputs.packages-path }}\n${{ steps.paths.outputs.registries-path }}\n${{ steps.paths.outputs.scratchspaces-path }}\n${{ steps.paths.outputs.compiled-path }}\n${{ steps.paths.outputs.logs-path }}\n","key":"${{ steps.keys.outputs.key }}","restore-keys":"${{ steps.keys.outputs.restore-key }}","enableCrossOsArchive":false}},{"name":"list restored depot directory sizes","if":"${{ steps.cache.outputs.cache-hit == 'true' }}","run":"du -shc ${{ steps.paths.outputs.depot }}/* || true","shell":"bash"},{"uses":"pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3","if":"${{ inputs.delete-old-caches == 'true' \u0026\u0026 runner.OS != 'Windows' }}","with":{"main":"echo \"\"","post":"julia $GITHUB_ACTION_PATH/handle_caches.jl \"${{ github.repository }}\" \"rm\" \"${{ steps.keys.outputs.restore-key }}\""},"env":{"GH_TOKEN":"${{ inputs.token }}"}},{"uses":"pyTooling/Actions/with-post-step@adef08d3bdef092282614f3b683897cefae82ee3","if":"${{ inputs.delete-old-caches == 'true' \u0026\u0026 runner.OS == 'Windows' }}","with":{"main":"echo \"\"","post":"cd %GITHUB_ACTION_PATH% \u0026\u0026 julia handle_caches.jl \"${{ github.repository }}\" \"rm\" \"${{ steps.keys.outputs.restore-key }}\""},"env":{"GH_TOKEN":"${{ inputs.token }}"}},{"id":"hit","run":"echo \"cache-hit=$CACHE_HIT\" \u003e\u003e $GITHUB_OUTPUT","env":{"CACHE_HIT":"${{ steps.cache.outputs.cache-hit }}"},"shell":"bash"}]},"default_branch":"main","path":null},"repo_metadata":{"id":39605052,"uuid":"441908600","full_name":"julia-actions/cache","owner":"julia-actions","description":"A shortcut action to cache Julia artifacts, packages, and registries.","archived":false,"fork":false,"pushed_at":"2025-09-01T16:08:32.000Z","size":137,"stargazers_count":43,"open_issues_count":29,"forks_count":9,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-09-01T18:13:49.829Z","etag":null,"topics":["actions","cache","github-actions","julia"],"latest_commit_sha":null,"homepage":"","language":"Julia","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/julia-actions.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-12-26T14:20:57.000Z","updated_at":"2025-09-01T16:08:13.000Z","dependencies_parsed_at":"2023-11-25T06:20:58.397Z","dependency_job_id":"db2447a6-ae50-4468-9d2b-8311d0aa84bd","html_url":"https://github.com/julia-actions/cache","commit_stats":{"total_commits":43,"total_committers":4,"mean_commits":10.75,"dds":0.4418604651162791,"last_synced_commit":"3ea06f8ffc7420583a26c12fa5a09e32a0f2d689"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/julia-actions/cache","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/julia-actions","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/sbom","scorecard":{"id":541327,"data":{"date":"2025-08-11","repo":{"name":"github.com/julia-actions/cache","commit":"46d70a0fdf9a635236da6c32ecc85f3982bf7be5"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5,"checks":[{"name":"Code-Review","score":9,"reason":"Found 13/14 approved changesets -- score normalized to 9","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":"Pinned-Dependencies","score":4,"reason":"dependency not pinned by hash detected -- score normalized to 4","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/CI.yml:68: update your workflow using https://app.stepsecurity.io/secureworkflow/julia-actions/cache/CI.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/CI.yml:121: update your workflow using https://app.stepsecurity.io/secureworkflow/julia-actions/cache/CI.yml/main?enable=pin","Info:   6 out of   6 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   2 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Maintained","score":0,"reason":"1 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":"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: topLevel 'actions' permission set to 'write': .github/workflows/CI.yml:19","Info: topLevel 'contents' permission set to 'read': .github/workflows/CI.yml:20","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":"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":-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 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"}}]},"last_synced_at":"2025-08-20T08:16:32.749Z","repository_id":39605052,"created_at":"2025-08-20T08:16:32.750Z","updated_at":"2025-08-20T08:16:32.750Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273175314,"owners_count":25058526,"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-01T02:00:09.058Z","response_time":120,"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":"julia-actions","name":"Julia Actions","uuid":"53965732","kind":"organization","description":"An organisation to host and maintain GitHub Actions useful for Julia projects.","email":null,"website":null,"location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/53965732?v=4","repositories_count":26,"last_synced_at":"2023-03-03T09:19:21.943Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/julia-actions","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-13T20:52:14.711Z","updated_at":"2023-03-03T09:19:22.155Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/julia-actions","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/julia-actions/repositories"},"tags":[{"name":"v2.1","sha":"d10a6fd8f31b12404a54613ebad242900567f2b9","kind":"commit","published_at":"2025-04-01T15:10:04.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.1/manifests"},{"name":"v2.1.0","sha":"d10a6fd8f31b12404a54613ebad242900567f2b9","kind":"commit","published_at":"2025-04-01T15:10:04.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.1.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.1.0/manifests"},{"name":"v2.0.7","sha":"2b1bf4d8a138668ac719ea7ca149b53ed8d8401e","kind":"commit","published_at":"2025-01-09T19:23:45.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.7","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.7/manifests"},{"name":"v2.0.6","sha":"49fd7c4af0ad5378a449b2488d80c2d304d36c70","kind":"commit","published_at":"2025-01-09T18:06:18.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.6","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.6/manifests"},{"name":"v2.0.5","sha":"824243901fb567ccb490b0d0e2483ccecde46834","kind":"tag","published_at":"2024-09-23T17:32:28.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.5","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.5","dependencies_parsed_at":"2024-09-27T11:06:17.998Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.5/manifests"},{"name":"v2.0.4","sha":"8608484607cba0bdb5437a7bad85d6502499d029","kind":"commit","published_at":"2024-08-31T11:35:05.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.4","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.4","dependencies_parsed_at":"2024-09-03T10:36:53.031Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.4/manifests"},{"name":"v2.0.3","sha":"e662c423976f25dc5bc17c4f828baf7ca9336e33","kind":"commit","published_at":"2024-08-30T12:54:55.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.3","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.3","dependencies_parsed_at":"2024-09-01T10:05:01.678Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.3/manifests"},{"name":"v2.0","sha":"e662c423976f25dc5bc17c4f828baf7ca9336e33","kind":"commit","published_at":"2024-08-30T12:54:55.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0","dependencies_parsed_at":"2024-09-01T10:05:01.676Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0/manifests"},{"name":"v2.0.2","sha":"e7913c2cb93bea16cc88abf47e27c950182cbd99","kind":"tag","published_at":"2024-08-12T14:05:10.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.2","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.2","dependencies_parsed_at":"2024-09-01T10:05:01.675Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.2/manifests"},{"name":"v2.0.1","sha":"580d2b69d895343992af2cbad49c32a0149c2cde","kind":"commit","published_at":"2024-06-26T21:54:10.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.1","dependencies_parsed_at":"2024-06-29T11:23:31.839Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.1/manifests"},{"name":"v2","sha":"d48542bb7b6239a9391789f01d21a6bdde9ad5df","kind":"commit","published_at":"2024-05-01T16:53:50.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2","html_url":"https://github.com/julia-actions/cache/releases/tag/v2","dependencies_parsed_at":"2024-05-07T06:57:49.386Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2/manifests"},{"name":"v2.0.0","sha":"d48542bb7b6239a9391789f01d21a6bdde9ad5df","kind":"commit","published_at":"2024-05-01T16:53:50.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v2.0.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v2.0.0","dependencies_parsed_at":"2024-05-03T10:46:02.895Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v2.0.0/manifests"},{"name":"v1.5.2","sha":"dc1a3cdeacb521b0ca93cfc66143fcadb15a5bd0","kind":"commit","published_at":"2024-01-16T15:48:25.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.5.2","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.5.2","dependencies_parsed_at":"2024-01-19T14:45:40.203Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.5.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5.2/manifests"},{"name":"v1.5.1","sha":"fca1a913406d220cba30c52e1b65a9d04e90822d","kind":"commit","published_at":"2024-01-09T21:50:08.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.5.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.5.1","dependencies_parsed_at":null,"dependency_job_id":"44891bef-f263-40d4-8606-cb594699d274","purl":"pkg:github/julia-actions/cache@v1.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5.1/manifests"},{"name":"v1.5","sha":"207a5a0786d0263d27c287c7bc6dd54fec8bed64","kind":"commit","published_at":"2024-01-05T01:29:52.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.5","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.5","dependencies_parsed_at":"2024-01-06T04:38:41.800Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5/manifests"},{"name":"v1.5.0","sha":"207a5a0786d0263d27c287c7bc6dd54fec8bed64","kind":"commit","published_at":"2024-01-05T01:29:52.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.5.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.5.0","dependencies_parsed_at":"2024-01-06T04:38:41.799Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.5.0/manifests"},{"name":"v1.4.1","sha":"ff08d7d467c5eb35ffdaed173fc3a33426a328f7","kind":"commit","published_at":"2023-11-28T16:06:28.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.4.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.4.1","dependencies_parsed_at":"2023-12-01T04:25:24.553Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.4.1/manifests"},{"name":"v1.4.0","sha":"b4528cf39e36c6f9f812184bc3368ba551c3e910","kind":"commit","published_at":"2023-11-28T01:52:22.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.4.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.4.0","dependencies_parsed_at":"2023-11-29T04:02:59.667Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.4.0/manifests"},{"name":"v1.4","sha":"b4528cf39e36c6f9f812184bc3368ba551c3e910","kind":"commit","published_at":"2023-11-28T01:52:22.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.4","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.4","dependencies_parsed_at":"2023-11-29T04:02:59.666Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.4/manifests"},{"name":"v1.3","sha":"8ef8d3313f5536c64072e04a9dad48c6669dc264","kind":"commit","published_at":"2023-11-02T11:12:59.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.3","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.3","dependencies_parsed_at":"2023-11-04T04:03:23.725Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.3/manifests"},{"name":"v1.3.0","sha":"8ef8d3313f5536c64072e04a9dad48c6669dc264","kind":"commit","published_at":"2023-11-02T11:12:59.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.3.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.3.0","dependencies_parsed_at":"2023-11-04T04:03:23.726Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.3.0/manifests"},{"name":"v1.2.2","sha":"569d290d51d6c22c1cd4ceec591a1bf112aab9c0","kind":"commit","published_at":"2023-03-13T11:26:29.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.2.2","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.2.2","dependencies_parsed_at":"2023-06-02T01:18:33.793Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2.2/manifests"},{"name":"v1.2.1","sha":"edf78a706c9fae0e693766d6f4be2e55e0903ad6","kind":"commit","published_at":"2023-02-22T11:40:35.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.2.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.2.1","dependencies_parsed_at":"2023-06-02T01:18:33.827Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2.1/manifests"},{"name":"v1.2","sha":"6bbc93575c5ecf24ce645aa411bd09194de38019","kind":"commit","published_at":"2023-01-05T17:35:07.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.2","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.2","dependencies_parsed_at":"2023-06-02T01:18:33.792Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2/manifests"},{"name":"v1.2.0","sha":"6bbc93575c5ecf24ce645aa411bd09194de38019","kind":"commit","published_at":"2023-01-05T17:35:07.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.2.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.2.0","dependencies_parsed_at":"2023-06-02T01:18:33.803Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.2.0/manifests"},{"name":"v1.1.7","sha":"a96f53eeda7c8186a41e73ff35110949df040a44","kind":"commit","published_at":"2022-12-28T07:52:36.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.7","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.7","dependencies_parsed_at":"2023-06-01T10:26:44.200Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.7/manifests"},{"name":"v1.1.6","sha":"26bda12c0229be95ff09ee969a726405811c29da","kind":"commit","published_at":"2022-10-14T15:38:48.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.6","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.6","dependencies_parsed_at":"2023-05-31T19:18:46.271Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.6/manifests"},{"name":"v1.1.5","sha":"d6968100711335869b395447423d3546516738fb","kind":"commit","published_at":"2022-10-14T08:55:36.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.5","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.5","dependencies_parsed_at":"2023-05-31T16:29:05.455Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.5/manifests"},{"name":"v1.1","sha":"ccbc2ac68e79285076b4fa91c7e0cd43b801ec5c","kind":"commit","published_at":"2022-08-22T08:57:03.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1","dependencies_parsed_at":"2023-05-31T10:57:58.236Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1/manifests"},{"name":"v1","sha":"ccbc2ac68e79285076b4fa91c7e0cd43b801ec5c","kind":"commit","published_at":"2022-08-22T08:57:03.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1","html_url":"https://github.com/julia-actions/cache/releases/tag/v1","dependencies_parsed_at":"2023-05-31T10:57:58.578Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1/manifests"},{"name":"v1.1.4","sha":"ccbc2ac68e79285076b4fa91c7e0cd43b801ec5c","kind":"commit","published_at":"2022-08-22T08:57:03.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.4","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.4","dependencies_parsed_at":"2023-05-31T10:57:57.839Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.4/manifests"},{"name":"v1.1.3","sha":"936559d9c8a8452e3426f2c76b596b5cdf10f442","kind":"commit","published_at":"2022-08-12T08:06:41.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.3","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.3","dependencies_parsed_at":"2023-05-31T10:57:58.908Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.3/manifests"},{"name":"v1.1.2","sha":"8684ae14b7139cdeff741a36cc896cdd57daaa45","kind":"commit","published_at":"2022-03-31T10:24:56.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.2","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.2","dependencies_parsed_at":"2023-05-31T10:57:59.288Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.2/manifests"},{"name":"v1.1.1","sha":"85cc05cd46078fafa9a2072a22448029da968341","kind":"commit","published_at":"2022-03-22T11:49:14.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.1","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.1","dependencies_parsed_at":"2023-05-31T10:57:59.630Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"745127cf80d5fa1a9953e0107e8ecd9b336022b7","kind":"commit","published_at":"2021-12-28T15:31:40.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.1.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.1.0","dependencies_parsed_at":"2023-05-31T10:58:00.005Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.1.0/manifests"},{"name":"v1.0","sha":"d0e0cf3a24b6022537d65373d4216c93c6d90b6e","kind":"commit","published_at":"2021-12-26T14:34:48.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.0","dependencies_parsed_at":"2023-05-31T10:58:00.439Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.0/manifests"},{"name":"v1.0.0","sha":"d0e0cf3a24b6022537d65373d4216c93c6d90b6e","kind":"commit","published_at":"2021-12-26T14:34:48.000Z","download_url":"https://codeload.github.com/julia-actions/cache/tar.gz/v1.0.0","html_url":"https://github.com/julia-actions/cache/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T10:58:00.211Z","dependency_job_id":null,"purl":"pkg:github/julia-actions/cache@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2026-05-22T18:04:36.974Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1529,"rankings":{"downloads":null,"dependent_repos_count":0.6116304864522262,"dependent_packages_count":0.0,"stargazers_count":5.942006021232768,"forks_count":8.25859610204405,"docker_downloads_count":0.35176675645697986,"average":3.032799873237205},"purl":"pkg:githubactions/julia-actions/cache","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/julia-actions/cache","docker_dependents_count":1,"docker_downloads_count":29203419,"usage_url":"https://repos.ecosyste.ms/usage/actions/julia-actions/cache","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/julia-actions/cache/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-01T15:01:26.568Z","issues_count":50,"pull_requests_count":169,"avg_time_to_close_issue":9649772.5,"avg_time_to_close_pull_request":1052604.406451613,"issues_closed_count":24,"pull_requests_closed_count":155,"pull_request_authors_count":13,"issue_authors_count":24,"avg_comments_per_issue":2.42,"avg_comments_per_pull_request":1.6449704142011834,"merged_pull_requests_count":124,"bot_issues_count":1,"bot_pull_requests_count":78,"past_year_issues_count":9,"past_year_pull_requests_count":39,"past_year_avg_time_to_close_issue":1407019.6666666667,"past_year_avg_time_to_close_pull_request":1203688.6176470588,"past_year_issues_closed_count":3,"past_year_pull_requests_closed_count":34,"past_year_pull_request_authors_count":6,"past_year_issue_authors_count":7,"past_year_avg_comments_per_issue":0.8888888888888888,"past_year_avg_comments_per_pull_request":1.1282051282051282,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":26,"past_year_merged_pull_requests_count":25,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/julia-actions%2Fcache/issues","maintainers":[{"login":"IanButterworth","count":34,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/IanButterworth"},{"login":"omus","count":28,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/omus"},{"login":"rikhuijzer","count":13,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/rikhuijzer"},{"login":"SaschaMann","count":12,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/SaschaMann"},{"login":"DilumAluthge","count":11,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/DilumAluthge"},{"login":"giordano","count":7,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/giordano"}],"active_maintainers":[{"login":"IanButterworth","count":8,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/IanButterworth"},{"login":"omus","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/omus"},{"login":"giordano","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/giordano"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/julia-actions%2Fcache/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/julia-actions%2Fcache/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/julia-actions%2Fcache/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/julia-actions%2Fcache/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/julia-actions%2Fcache/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/julia-actions%2Fcache/codemeta","maintainers":[]}