Skip to content

Commit 6f350ca

Browse files
authored
Merge pull request #154 from shimataro/develop
version 2.1.0
2 parents 8ddce4e + 93a402e commit 6f350ca

File tree

8 files changed

+388
-654
lines changed

8 files changed

+388
-654
lines changed

.github/workflows/build.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ on:
88

99
jobs:
1010
build:
11-
name: Build on ${{ matrix.os }} / Node.js v${{ matrix.nodejs }}
11+
name: Build
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
1515
os:
16-
- Windows-latest
17-
- macOS-latest
18-
- Ubuntu-latest
16+
- Windows-2019
17+
- macOS-10.15
18+
- Ubuntu-16.04
19+
- Ubuntu-18.04
20+
- Ubuntu-20.04
1921
nodejs:
2022
- 12
2123
fail-fast: false

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [2.1.0] - 2020-08-15
11+
12+
### Changed
13+
14+
* Append LF to `known_hosts` / `config` (thanks [@jacktuck](https://github.com/jacktuck))
15+
16+
### Fixed
17+
18+
* Typo (thanks [@psbss](https://github.com/psbss))
19+
1020
## [2.0.3] - 2020-06-06
1121

1222
### Added
@@ -113,7 +123,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
113123

114124
* First release.
115125

116-
[Unreleased]: https://github.com/shimataro/ssh-key-action/compare/v2.0.3...HEAD
126+
[Unreleased]: https://github.com/shimataro/ssh-key-action/compare/v2.1.0...HEAD
127+
[2.1.0]: https://github.com/shimataro/ssh-key-action/compare/v2.0.3...v2.1.0
117128
[2.0.3]: https://github.com/shimataro/ssh-key-action/compare/v2.0.2...v2.0.3
118129
[2.0.2]: https://github.com/shimataro/ssh-key-action/compare/v2.0.1...v2.0.2
119130
[2.0.1]: https://github.com/shimataro/ssh-key-action/compare/v2.0.0...v2.0.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Check below:
8888
* OPENSSH format (key begins with `-----BEGIN OPENSSH PRIVATE KEY-----`) may not work.
8989
* Use PEM format (begins with `-----BEGIN RSA PRIVATE KEY-----`). Convert it from OPENSSH format using `ssh-keygen -p -m PEM -f ~/.ssh/id_rsa`
9090
* `Host key verification failed.`:
91-
* Set `known_hosts` option correctly (use `ssh-keyscan` command).
91+
* Set `known_hosts` parameter correctly (use `ssh-keyscan` command).
9292

9393
### How do I use encrypted SSH key?
9494

lib/main.js

+12-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)