All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Add the
log-public-key
input that can be used to turn off logging key identities (#122)
- Fix path to
git
binary on Windows, assuming GitHub-hosted runners (#136, #137) - Fix a nonsensical log message (#139)
- Update the version of Node used by the action from 12 to 16 (https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/).
- Update changed GitHub Host Keys (#102, #101)
- Various documentation (README) improvements and additions
- Change logging to more precisely state that public keys are being printed
- Fixed cleanup phase to really terminate the ssh-agent (#80)
- Fix termination of ssh-agent also on workflow failure (#79)
- Various documentation (README) improvements and additions
- Use case-insensitive regex matching when scanning key comments (#68, #70, #71)
- Log when a key is not used as a deploy key (#69)
- Fix deployment key mapping on Windows virtual environment by using SSH binaries from the Git suite, terminate ssh-agent upon actio termination on Windows as well (#63)
- Handle ENOENT exceptions with a graceful message
- Various documentation (README) improvements and additions
- Add support for GitHub Deployment Keys through key comments (#59). Fixes #30, closes #38.
- Support for container-based workflows and Windows (#17)
- Fix scripts/build.js to work on Windows (#38)
- Various documentation (README) improvements and additions
- This action no longer relies on
set-env
, which has been deprecated.
- A failure to kill the agent in the post-action step will no longer fail the workflow run. That way, you can kill the agent yourself when necessary (#33).
- A new post-action step will automatically clean up the running agent at the end of a job. This helps with self-hosted runners, which are non-ephemeral. (@thommyhh, #27)
- Unless the SSH_AUTH_SOCK is configured explicitly, the SSH agent will now use a random file name for the socket. That way, multiple, concurrent SSH agents can be used on self-hosted runners. (@thommyhh, #27)
-
Multiple SSH keys can now be provided (#14, closes #7). Thanks to @webknjaz and @bradmartin for support and tests.
-
Catch empty ssh-private-key input values and exit with a helpful error message right away.
Initial release.