Skip to content

Commit

Permalink
Merge pull request MrSquaare#37 from MrSquaare/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSquaare authored Oct 12, 2022
2 parents 523473d + 4454f32 commit c86f64b
Show file tree
Hide file tree
Showing 7 changed files with 189 additions and 195 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- macos-latest
- ubuntu-latest
node:
- 12
- 16

runs-on: ${{ matrix.os }}

Expand All @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}

Expand All @@ -39,7 +39,7 @@ jobs:
- macos-latest
- ubuntu-latest
node:
- 12
- 16

runs-on: ${{ matrix.os }}

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Setup SSH

This GitHub action helps you to setup SSH.

It support Node.js 12+ for Linux and macOS runners.
It support Node.js 16+ for Linux and macOS runners.

## Using

Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup SSH
uses: MrSquaare/ssh-setup-action@v1
uses: MrSquaare/ssh-setup-action@v2
with:
host: github.com
private-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup SSH
uses: MrSquaare/ssh-setup-action@v1
uses: MrSquaare/ssh-setup-action@v2
with:
host: github.com
private-key: ${{ secrets.SSH_PRIVATE_KEY }}
Expand All @@ -74,13 +74,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup GitHub SSH
uses: MrSquaare/ssh-setup-action@v1
uses: MrSquaare/ssh-setup-action@v2
with:
host: github.com
private-key: ${{ secrets.SSH_PRIVATE_KEY_GITHUB }}
private-key-name: github
- name: Setup GitLab SSH
uses: MrSquaare/ssh-setup-action@v1
uses: MrSquaare/ssh-setup-action@v2
with:
host: gitlab.com
private-key: ${{ secrets.SSH_PRIVATE_KEY_GITLAB }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ inputs:
default: "id_rsa"
required: false
runs:
using: "node12"
using: "node16"
main: "lib/index.js"
2 changes: 1 addition & 1 deletion lib/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit c86f64b

Please sign in to comment.