{"id":20597706,"url":"https://github.com/unisonweb/actions","last_synced_at":"2026-03-19T16:37:42.886Z","repository":{"id":229196133,"uuid":"776060451","full_name":"unisonweb/actions","owner":"unisonweb","description":"Github Actions and Workflows","archived":false,"fork":false,"pushed_at":"2025-06-18T10:25:42.000Z","size":28,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-10-04T05:54:26.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/unisonweb.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":"2024-03-22T15:46:55.000Z","updated_at":"2025-06-21T01:13:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"1cb98f5f-7bff-40bd-a791-78ffedc097dc","html_url":"https://github.com/unisonweb/actions","commit_stats":null,"previous_names":["unisonweb/actions"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/unisonweb/actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unisonweb%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unisonweb%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unisonweb%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unisonweb%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unisonweb","download_url":"https://codeload.github.com/unisonweb/actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unisonweb%2Factions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29443475,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T10:51:12.367Z","status":"ssl_error","status_checked_at":"2026-02-14T10:50:52.088Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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"}},"keywords":[],"created_at":"2024-11-16T08:23:37.710Z","updated_at":"2026-02-14T12:34:07.840Z","avatar_url":"https://github.com/unisonweb.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## @unisonweb/actions/stack/install\nInstalls `stack` and adds it to the path.\n\nExample usage:\n```\nsteps:\n  - uses: unisonweb/actions/stack/install@main\n    with:\n      version: 2.9.1\n```      \n`version` is optional.\n\n## @unisonweb/actions/stack/cache/restore\nRestore the global and local stack work directories from a cache\n\nExample usage:\n```\nsteps:\n  - name: restore stack caches\n    id: restore-stack-caches\n    uses: unisonweb/actions/stack/cache/restore@main\n    with:\n      cache-prefix: ci\n\n  - name: check result\n    if: steps.restore-stack-caches.outputs.cache-hit == 'true'\n    run: echo \"Found an exact match!\"\n    shell: bash\n```\n\nThe caches are keyed by the cache prefix, the OS, and the resolver version in your `stack.yaml`, and the contents of your `stack.yaml` and `package.yaml`.\n\nFor a partial hit, only the cache prefix, the OS, and the resolver version must match, so you can use the `cache-prefix` input to distinguish between caches you wouldn't want to use as fallbacks, even if the OS and resolver match.\n\n### Inputs\n`cache-prefix`: The cache prefix to use for `~/.stack`, e.g. \"release\" or \"ci\". Required.\n`work-cache-prefix`: The cache prefix to use for `**/.stack-work`. Defaults to the same as `cache-prefix`.\n`stack-yaml-dir`: The directory to search for `stack.yaml`. Defaults to `\".\"`\n`lookup-only`: If `'true'`, only checks if cache entry exists and skips download. Defaults to `'false'`. Note that due to technical limitations, these are strings, not Booleans.\n\n### Outputs\n`cache-hit`: Whether the `.stack` cache was restored with an exact match.\n`work-cache-hit`: `'true'` or `'false'`, whether the `.stack-work` cache was restored with an exact match. Note that due to technical limitations, these are strings, not Booleans.\n\n## @unisonweb/actions/stack/cache/save\nSave the global and local stack work directories to caches.\n\nDue to a technical limitation, these actions provide independent `restore` and `save` functionality. This is in contrast to the `github/actions/cache` action which automatically saves at the end of a succesful run, whenever there was not an exact cache hit during restore.\n\nInstead, you have to do this manually: restoring at the start, and saving at the end whenever there was not an exact cache hit during restore.\n\nExample usage:\n```\nsteps:\n  - name: save stack caches\n    if: steps.restore-stack-caches.outputs.cache-hit != 'true'\n    uses: unisonweb/actions/stack/cache/save@main\n    with:\n        cache-prefix: ci\n```\n\n### Inputs\n`cache-prefix`: The cache prefix to use for `~/.stack`, e.g. \"release\" or \"ci\". Required.\n`work-cache-prefix`: The cache prefix to use for `**/.stack-work`. Defaults to the same as `cache-prefix`.\n`stack-yaml-dir`: The directory to search for `stack.yaml`. Defaults to `\".\"`\n`lookup-only`: If `'true'`, only checks if cache entry exists and skips download. Defaults to `'false'`. Note that due to technical limitations, these are strings, not Booleans.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funisonweb%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funisonweb%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funisonweb%2Factions/lists"}