{"id":15994678,"url":"https://github.com/taiki-e/github-actions","last_synced_at":"2026-01-28T17:03:24.457Z","repository":{"id":51396583,"uuid":"313751748","full_name":"taiki-e/github-actions","owner":"taiki-e","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-31T15:32:21.000Z","size":308,"stargazers_count":7,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-01T02:47:05.786Z","etag":null,"topics":["github-actions"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taiki-e.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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},"funding":{"github":"taiki-e"}},"created_at":"2020-11-17T21:50:41.000Z","updated_at":"2025-12-31T15:32:24.000Z","dependencies_parsed_at":"2025-12-17T21:07:09.445Z","dependency_job_id":null,"html_url":"https://github.com/taiki-e/github-actions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/taiki-e/github-actions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fgithub-actions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fgithub-actions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fgithub-actions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fgithub-actions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taiki-e","download_url":"https://codeload.github.com/taiki-e/github-actions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fgithub-actions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28847056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"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":["github-actions"],"created_at":"2024-10-08T07:09:46.337Z","updated_at":"2026-01-28T17:03:24.451Z","avatar_url":"https://github.com/taiki-e.png","language":"Shell","funding_links":["https://github.com/sponsors/taiki-e"],"categories":[],"sub_categories":[],"readme":"# Actions and Reusable Workflows for GitHub Actions\n\nThis repository contains some [actions](https://docs.github.com/en/actions/creating-actions/about-custom-actions)\nand [reusable workflows](https://docs.github.com/en/actions/using-workflows/reusing-workflows)\nused on CIs managed by @taiki-e.\nThere are no stability guarantees for these actions and workflows, since they're\nsupposed to only be used in infra managed by us.\n\n## Actions\n\n- [**free-device-space**](free-device-space): Free device space.\n- [**install-rust**](install-rust): Install Rust toolchain.\n- [**setup-docker**](setup-docker): Setup docker.\n\n## Reusable workflows\n\n- [**check-external-types**](.github/workflows/check-external-types.yml): Run `cargo check-external-types` in a way that respects the docs.rs metadata.\n- [**docs**](.github/workflows/docs.yml): Run `cargo doc` in a way that is as similar to docs.rs as possible.\n- [**fuzz**](.github/workflows/fuzz.yml): Build fuzzing code with `cargo fuzz`, `cargo afl`, and `cargo hfuzz`, and run fuzzing with them on scheduled run.\n- [**miri**](.github/workflows/miri.yml): Run `cargo miri test` in strict mode.\n- [**msrv**](.github/workflows/msrv.yml): Run MSRV (minimum supported Rust version) check in [a pedantic, time-consuming but highly accurate way](https://github.com/taiki-e/cargo-hack/issues/93).\n- [**rust-release**](.github/workflows/rust-release.yml): Create and push the release commit and tag, create GitHub release, and publish crates.\n- [**release-dry-run**](.github/workflows/release-dry-run.yml): Build Rust binaries based on release workflow.\n- [**test**](.github/workflows/test.yml): Run `cargo test` `cargo careful test` + `cargo hack build --feature-powerset` + `cargo minimal-versions build`.\n- [**tidy**](.github/workflows/tidy.yml): Run various checks.\n\n## Moved or removed actions\n\nThese actions were previously included in this repository but have been moved into their own repository because they were considered stable enough.\n\n- **checkout**: moved into the\n  [**checkout-action**][checkout-action] repository.\n- **create-release**: moved into the\n  [**create-gh-release-action**][create-gh-release-action] repository.\n- **install**: moved into the\n  [**install-action**][install-action] repository.\n- **upload-rust-binary**: moved into the\n  [**upload-rust-binary-action**][upload-rust-binary-action] repository.\n\nThese actions were previously included in this repository but have been removed.\n\n- **deploy-gh-pages**: removed because no longer used.\n- **update-dependabot-pr**: removed because no longer used.\n\n[checkout-action]: https://github.com/taiki-e/checkout-action\n[create-gh-release-action]: https://github.com/taiki-e/create-gh-release-action\n[install-action]: https://github.com/taiki-e/install-action\n[upload-rust-binary-action]: https://github.com/taiki-e/upload-rust-binary-action\n\n## License\n\nLicensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or\n[MIT license](LICENSE-MIT) at your option.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you, as defined in the Apache-2.0 license, shall\nbe dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaiki-e%2Fgithub-actions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaiki-e%2Fgithub-actions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaiki-e%2Fgithub-actions/lists"}