3.3 KiB
Changelog
All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning.
Unreleased
-
Support checking out private repository. (#16)
To use this action in private repositories, explicitly set
tokeninput option:- uses: taiki-e/checkout-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }}Almost equivalent to:
- uses: actions/checkout@v6 with: persist-credentials: falseUnlike actions/checkout (which writes credentials to disk as plaintext even when
persist-credentialsis set tofalse, when git is available), this action does not write credentials to disk even iftokeninput option is set. -
Improve support for OpenWrt 25.12+.
1.4.2 - 2026-04-04
-
Implement workaround for windows-11-arm runner bug which may causes issue that the action successfully completes but not checked out.
We have not yet received any reports of this issue occurring with this action, but given the nature of the problem, it is possible that it could be affected.
1.4.1 - 2026-03-08
- Avoid triggering zizmor ref-confusion when using this action in form of
uses: taiki-e/checkout-action@v1.
1.4.0 - 2026-01-25
-
Show hardware information at the first if possible to help debugging runner issue.
-
Fix an issue where GitHub Actions' log grouping sometime doesn't work.
1.3.2 - 2026-01-11
- Enable release immutability.
1.3.1 - 2024-09-28
- Fix compatibility issue with Cygwin
sh.
1.3.0 - 2024-08-11
- Improve support for OpenWrt based containers/self-hosted runners.
1.2.0 - 2024-07-06
-
Fix "/etc/os-release: No such file or directory" error on CentOS 6.
-
Improve support for Alpine based containers/self-hosted runners (no longer need to install bash in advance).
-
Improve documentation on platform support.
1.1.1 - 2024-04-19
- Diagnostic improvements.
1.1.0 - 2024-04-19
- Improve support for SUSE/Arch based containers/self-hosted runners.
1.0.0 - 2024-03-08
Initial release