{"id":18285877,"url":"https://github.com/exodusmovement/actions","last_synced_at":"2026-01-21T00:34:09.396Z","repository":{"id":218926732,"uuid":"591176676","full_name":"ExodusMovement/actions","owner":"ExodusMovement","description":"Commonly recurring patterns wrapped in neatly reusable actions","archived":false,"fork":false,"pushed_at":"2025-12-18T22:48:50.000Z","size":894,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":7,"default_branch":"master","last_synced_at":"2026-01-15T07:20:19.083Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ExodusMovement.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2023-01-20T05:02:59.000Z","updated_at":"2025-12-18T10:43:25.000Z","dependencies_parsed_at":"2024-01-24T15:28:11.631Z","dependency_job_id":"26f89c7d-486b-4af3-ad27-6b1a9ef28f21","html_url":"https://github.com/ExodusMovement/actions","commit_stats":null,"previous_names":["exodusmovement/actions"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ExodusMovement/actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExodusMovement%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExodusMovement%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExodusMovement%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExodusMovement%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ExodusMovement","download_url":"https://codeload.github.com/ExodusMovement/actions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExodusMovement%2Factions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28619807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T23:49:58.628Z","status":"ssl_error","status_checked_at":"2026-01-20T23:47:29.996Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-05T13:18:01.256Z","updated_at":"2026-01-21T00:34:09.381Z","avatar_url":"https://github.com/ExodusMovement.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Actions\n\nCommonly recurring patterns wrapped neatly in re-usable actions.\n\n## Setup\n\n### Yarn (classic)\n\nThis setup action is to be used in yarn classic repositories (version \u003c 2). It\n\n- configures the node version from `.nvmrc` which is assumed at the repository root\n- grants access to the private registry, using `npm-token` input\n- configures caching to restore `node_modules` and `src/node_modules`\n\nIt can be used as simple as\n\n```yml\nname: Tests\n\non:\n  push:\n\njobs:\n  test:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: ExodusMovement/actions/setup/yarn@master\n        with:\n          npm-token: ${{ secrets.NPM_TOKEN }}\n      - run: yarn run deps:install\n      - run: yarn lint\n      - run: yarn test\n```\n\n### Yarn berry\n\nThis setup action is to be used in yarn berry repositories (version \u003e= 2).\nIt differs from the yarn classic setup action in two regards\n\n- it restores `.yarn/cache` instead of `node_modules`\n- it grants access to the private registry through `yarn config set` because `.npmrc` files are disregarded by yarn berry\n\nTo use it, only the following detail has to be changed compared with the above snippet\n\n```diff\n- - uses: ExodusMovement/actions/setup/yarn@master\n+ - uses: ExodusMovement/actions/setup/yarn-berry@master\n```\n\n### Lerna\n\nThis setup action layers on top of the yarn berry action and adds cache retrieval of the nx cache in a lerna monorepo.\n\nUse it as\n\n```yaml\n- uses: ExodusMovement/actions/setup/lerna@master\n  with:\n    npm-token: ${{ secrets.NPM_TOKEN }}\n```\n\nor if you need publish permissions\n\n```yaml\n- uses: ExodusMovement/actions/setup/lerna@master\n  with:\n    npm-token: ${{ secrets.NPM_PUBLISH_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexodusmovement%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexodusmovement%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexodusmovement%2Factions/lists"}