{"id":15994683,"url":"https://github.com/taiki-e/checkout-action","last_synced_at":"2025-03-17T15:32:24.859Z","repository":{"id":226637247,"uuid":"769249267","full_name":"taiki-e/checkout-action","owner":"taiki-e","description":"GitHub Action for checking out a repository. (Simplified actions/checkout alternative that does not depend on Node.js.)","archived":false,"fork":false,"pushed_at":"2024-10-20T18:17:39.000Z","size":46,"stargazers_count":17,"open_issues_count":5,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-20T22:35:02.985Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taiki-e.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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},"funding":{"github":"taiki-e"}},"created_at":"2024-03-08T16:45:04.000Z","updated_at":"2024-10-20T18:17:42.000Z","dependencies_parsed_at":"2024-06-01T02:41:16.588Z","dependency_job_id":"1ab3e25c-21f8-4be1-a530-08625a3d61e2","html_url":"https://github.com/taiki-e/checkout-action","commit_stats":null,"previous_names":["taiki-e/checkout-action"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fcheckout-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fcheckout-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fcheckout-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taiki-e%2Fcheckout-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taiki-e","download_url":"https://codeload.github.com/taiki-e/checkout-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221696219,"owners_count":16865376,"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","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:47.273Z","updated_at":"2024-10-27T15:14:27.343Z","avatar_url":"https://github.com/taiki-e.png","language":"Shell","funding_links":["https://github.com/sponsors/taiki-e"],"categories":["Shell"],"sub_categories":[],"readme":"# checkout-action\n\n[![release](https://img.shields.io/github/release/taiki-e/checkout-action?style=flat-square\u0026logo=github)](https://github.com/taiki-e/checkout-action/releases/latest)\n[![github actions](https://img.shields.io/github/actions/workflow/status/taiki-e/checkout-action/ci.yml?branch=main\u0026style=flat-square\u0026logo=github)](https://github.com/taiki-e/checkout-action/actions)\n\nGitHub Action for checking out a repository. (Simplified [actions/checkout] alternative that does not depend on Node.js.)\n\n- [Usage](#usage)\n- [Why not actions/checkout?](#why-not-actionscheckout)\n- [Compatibility](#compatibility)\n- [Related Projects](#related-projects)\n- [License](#license)\n\n## Usage\n\nThis action currently provides a minimal subset of the features provided by [actions/checkout].\n\nThe features supported as of v1.0.0 are purely based on my use cases within public repositories, but feel free to submit an issue if you see something missing in your use case. See [issues](https://github.com/taiki-e/checkout-action/issues) for known unsupported features.\n\n```yaml\n- uses: taiki-e/checkout-action@v1\n```\n\nAlmost equivalent to (for public repositories):\n\n```yaml\n- uses: actions/checkout@v4\n  with:\n    persist-credentials: false\n```\n\n## Why not actions/checkout?\n\nAs of 2024-03-08, the latest version of [actions/checkout] that uses node20 [doesn't work on CentOS 7](https://github.com/actions/runner/issues/2906).\n\nAlso, in `actions/*` actions, each update of the Node.js used increments the major version (it is the correct behavior for compatibility although), so workflows that use it require maintenance on a regular basis. (Unless you have fully automated dependency updates.)\n\n## Compatibility\n\nThis action has been tested for GitHub-hosted runners (Ubuntu, macOS, Windows) and containers (Ubuntu, Debian, Fedora, CentOS, Alma, openSUSE, Arch, Alpine, OpenWrt).\n\nOn Linux, if any required tools are missing, this action will attempt to install them from distro's package manager, so no pre-setup is usually required (except for CentOS or Debian 9 (or older) or very old distro described below, which was already EoL and needs to use vault/archive repos -- see \"Install requirements\" in [our CI config](https://github.com/taiki-e/checkout-action/blob/HEAD/.github/workflows/ci.yml) for example of setup).\n\nOn other platforms, at least the following tools are required:\n\n- bash 3.2+\n- git 1.8+\n\nKnown environments affected by the above version requirements are CentOS 6 (EoL on 2020-11) and Ubuntu 12.04 (EoL on 2017-04) using git 1.7 (see \"Install requirements\" in [our CI config](https://github.com/taiki-e/checkout-action/blob/HEAD/.github/workflows/ci.yml) for example of workaround).\n\n## Related Projects\n\n- [install-action]: GitHub Action for installing development tools (mainly from GitHub Releases).\n- [create-gh-release-action]: GitHub Action for creating GitHub Releases based on changelog.\n- [upload-rust-binary-action]: GitHub Action for building and uploading Rust binary to GitHub Releases.\n- [setup-cross-toolchain-action]: GitHub Action for setup toolchains for cross compilation and cross testing for Rust.\n- [cache-cargo-install-action]: GitHub Action for `cargo install` with cache.\n\n[actions/checkout]: https://github.com/actions/checkout\n[cache-cargo-install-action]: https://github.com/taiki-e/cache-cargo-install-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[setup-cross-toolchain-action]: https://github.com/taiki-e/setup-cross-toolchain-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%2Fcheckout-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaiki-e%2Fcheckout-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaiki-e%2Fcheckout-action/lists"}