mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-22 01:00:50 +00:00
Merge remote-tracking branch 'origin/master' into camilo/log-public-key
This commit is contained in:
commit
cf116fbe80
4 changed files with 11 additions and 5 deletions
|
@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## v0.6.0 [2022-10-19]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* 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/).
|
||||||
|
|
||||||
## v0.5.4 [2021-11-21]
|
## v0.5.4 [2021-11-21]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -36,9 +36,9 @@ jobs:
|
||||||
...
|
...
|
||||||
steps:
|
steps:
|
||||||
- actions/checkout@v2
|
- actions/checkout@v2
|
||||||
# Make sure the @v0.5.4 matches the current version of the
|
# Make sure the @v0.6.0 matches the current version of the
|
||||||
# action
|
# action
|
||||||
- uses: webfactory/ssh-agent@v0.5.4
|
- uses: webfactory/ssh-agent@v0.6.0
|
||||||
with:
|
with:
|
||||||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
||||||
- ... other steps
|
- ... other steps
|
||||||
|
@ -53,7 +53,7 @@ You can set up different keys as different secrets and pass them all to the acti
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# ... contens as before
|
# ... contens as before
|
||||||
- uses: webfactory/ssh-agent@v0.5.4
|
- uses: webfactory/ssh-agent@v0.6.0
|
||||||
with:
|
with:
|
||||||
ssh-private-key: |
|
ssh-private-key: |
|
||||||
${{ secrets.FIRST_KEY }}
|
${{ secrets.FIRST_KEY }}
|
||||||
|
|
|
@ -11,7 +11,7 @@ inputs:
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: true
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node16'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
post: 'dist/cleanup.js'
|
post: 'dist/cleanup.js'
|
||||||
post-if: 'always()'
|
post-if: 'always()'
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "webfactory-action-ssh-agent",
|
"name": "webfactory-action-ssh-agent",
|
||||||
"repository": "git@github.com:webfactory/ssh-agent.git",
|
"repository": "git@github.com:webfactory/ssh-agent.git",
|
||||||
"description": "GitHub Action to set up ssh-agent with a private SSH key",
|
"description": "GitHub Action to set up ssh-agent with a private SSH key",
|
||||||
"version": "0.1.0",
|
"version": "0.6.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"author": "webfactory GmbH <info@webfactory.de>",
|
"author": "webfactory GmbH <info@webfactory.de>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
Loading…
Reference in a new issue