mirror of
https://hub.psychoinformatics.de/actions/checkout-action.git
synced 2026-09-10 05:46:04 +00:00
93 lines
3.3 KiB
Markdown
93 lines
3.3 KiB
Markdown
# Changelog
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
This project adheres to [Semantic Versioning](https://semver.org).
|
|
|
|
<!--
|
|
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
|
|
-->
|
|
|
|
## [Unreleased]
|
|
|
|
- Support checking out private repository. ([#16](https://github.com/taiki-e/checkout-action/pull/16))
|
|
|
|
To use this action in private repositories, explicitly set `token` input option:
|
|
|
|
```yaml
|
|
- uses: taiki-e/checkout-action@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
```
|
|
|
|
Almost equivalent to:
|
|
|
|
```yaml
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
```
|
|
|
|
Unlike actions/checkout (which writes credentials to disk as plaintext even when `persist-credentials` is set to `false`, when git is available), this action does not write credentials to disk even if `token` input option is set.
|
|
|
|
- Improve support for OpenWrt 25.12+.
|
|
|
|
## [1.4.2] - 2026-04-04
|
|
|
|
- Implement workaround for [windows-11-arm runner bug](https://github.com/actions/partner-runner-images/issues/169) 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](https://docs.zizmor.sh/audits/#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](https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/immutable-releases).
|
|
|
|
## [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
|
|
|
|
[Unreleased]: https://github.com/taiki-e/checkout-action/compare/v1.4.2...HEAD
|
|
[1.4.2]: https://github.com/taiki-e/checkout-action/compare/v1.4.1...v1.4.2
|
|
[1.4.1]: https://github.com/taiki-e/checkout-action/compare/v1.4.0...v1.4.1
|
|
[1.4.0]: https://github.com/taiki-e/checkout-action/compare/v1.3.2...v1.4.0
|
|
[1.3.2]: https://github.com/taiki-e/checkout-action/compare/v1.3.1...v1.3.2
|
|
[1.3.1]: https://github.com/taiki-e/checkout-action/compare/v1.3.0...v1.3.1
|
|
[1.3.0]: https://github.com/taiki-e/checkout-action/compare/v1.2.0...v1.3.0
|
|
[1.2.0]: https://github.com/taiki-e/checkout-action/compare/v1.1.1...v1.2.0
|
|
[1.1.1]: https://github.com/taiki-e/checkout-action/compare/v1.1.0...v1.1.1
|
|
[1.1.0]: https://github.com/taiki-e/checkout-action/compare/v1.0.0...v1.1.0
|
|
[1.0.0]: https://github.com/taiki-e/checkout-action/releases/tag/v1.0.0
|