Skip to content

Commit ea4c593

Browse files
authored
Update node from node12 to node16 (#132)
This addresses the deprecation of Node 12 in GHA (https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/).
1 parent 26e485b commit ea4c593

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v0.6.0 [2022-10-11]
11+
### Changed
12+
* Update node to node16
13+
1014
## v0.5.4 [2021-11-21]
1115

1216
### Fixed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
...
3737
steps:
3838
- actions/checkout@v2
39-
# Make sure the @v0.5.4 matches the current version of the
39+
# Make sure the @v0.6.0 matches the current version of the
4040
# action
41-
- uses: webfactory/ssh-agent@v0.5.4
41+
- uses: webfactory/ssh-agent@v0.6.0
4242
with:
4343
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
4444
- ... other steps
@@ -53,7 +53,7 @@ You can set up different keys as different secrets and pass them all to the acti
5353

5454
```yaml
5555
# ... contens as before
56-
- uses: webfactory/ssh-agent@v0.5.4
56+
- uses: webfactory/ssh-agent@v0.6.0
5757
with:
5858
ssh-private-key: |
5959
${{ secrets.FIRST_KEY }}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
ssh-auth-sock:
88
description: 'Where to place the SSH Agent auth socket'
99
runs:
10-
using: 'node12'
10+
using: 'node16'
1111
main: 'dist/index.js'
1212
post: 'dist/cleanup.js'
1313
post-if: 'always()'

0 commit comments

Comments
 (0)