mirror of
				https://github.com/appleboy/ssh-action.git
				synced 2025-10-31 00:10:11 +08:00 
			
		
		
		
	docs: update appleboy/ssh-action version in README
- Update the version of `appleboy/ssh-action` from `v0.2.0` to `v1.0.0` in multiple places in the README. Signed-off-by: appleboy <appleboy.tw@gmail.com>
This commit is contained in:
		
							parent
							
								
									55dabf81b4
								
							
						
					
					
						commit
						4330a1ea48
					
				
							
								
								
									
										24
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								README.md
									
									
									
									
									
								
							| @ -63,7 +63,7 @@ jobs: | |||||||
|     runs-on: ubuntu-latest |     runs-on: ubuntu-latest | ||||||
|     steps: |     steps: | ||||||
|     - name: executing remote ssh commands using password |     - name: executing remote ssh commands using password | ||||||
|       uses: appleboy/ssh-action@v0.2.0 |       uses: appleboy/ssh-action@v1.0.0 | ||||||
|       with: |       with: | ||||||
|         host: ${{ secrets.HOST }} |         host: ${{ secrets.HOST }} | ||||||
|         username: ${{ secrets.USERNAME }} |         username: ${{ secrets.USERNAME }} | ||||||
| @ -164,7 +164,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```yaml | ```yaml | ||||||
| - name: executing remote ssh commands using password | - name: executing remote ssh commands using password | ||||||
|   uses: appleboy/ssh-action@v0.2.0 |   uses: appleboy/ssh-action@v1.0.0 | ||||||
|   with: |   with: | ||||||
|     host: ${{ secrets.HOST }} |     host: ${{ secrets.HOST }} | ||||||
|     username: ${{ secrets.USERNAME }} |     username: ${{ secrets.USERNAME }} | ||||||
| @ -177,7 +177,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```yaml | ```yaml | ||||||
| - name: executing remote ssh commands using ssh key | - name: executing remote ssh commands using ssh key | ||||||
|   uses: appleboy/ssh-action@v0.2.0 |   uses: appleboy/ssh-action@v1.0.0 | ||||||
|   with: |   with: | ||||||
|     host: ${{ secrets.HOST }} |     host: ${{ secrets.HOST }} | ||||||
|     username: ${{ secrets.USERNAME }} |     username: ${{ secrets.USERNAME }} | ||||||
| @ -190,7 +190,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```yaml | ```yaml | ||||||
| - name: multiple command | - name: multiple command | ||||||
|   uses: appleboy/ssh-action@v0.2.0 |   uses: appleboy/ssh-action@v1.0.0 | ||||||
|   with: |   with: | ||||||
|     host: ${{ secrets.HOST }} |     host: ${{ secrets.HOST }} | ||||||
|     username: ${{ secrets.USERNAME }} |     username: ${{ secrets.USERNAME }} | ||||||
| @ -207,7 +207,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: multiple host |   - name: multiple host | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
| -     host: "foo.com" | -     host: "foo.com" | ||||||
| +     host: "foo.com,bar.com" | +     host: "foo.com,bar.com" | ||||||
| @ -223,7 +223,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: multiple host |   - name: multiple host | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
| -     host: "foo.com" | -     host: "foo.com" | ||||||
| +     host: "foo.com:1234,bar.com:5678" | +     host: "foo.com:1234,bar.com:5678" | ||||||
| @ -238,7 +238,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: multiple host |   - name: multiple host | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
|       host: "foo.com,bar.com" |       host: "foo.com,bar.com" | ||||||
| +     sync: true | +     sync: true | ||||||
| @ -254,7 +254,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com" | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: pass environment |   - name: pass environment | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
| +   env: | +   env: | ||||||
| +     FOO: "BAR" | +     FOO: "BAR" | ||||||
| +     BAR: "FOO" | +     BAR: "FOO" | ||||||
| @ -279,7 +279,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: stop script if command error |   - name: stop script if command error | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
|       host: ${{ secrets.HOST }} |       host: ${{ secrets.HOST }} | ||||||
|       username: ${{ secrets.USERNAME }} |       username: ${{ secrets.USERNAME }} | ||||||
| @ -332,7 +332,7 @@ Host FooServer | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: ssh proxy command |   - name: ssh proxy command | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
|       host: ${{ secrets.HOST }} |       host: ${{ secrets.HOST }} | ||||||
|       username: ${{ secrets.USERNAME }} |       username: ${{ secrets.USERNAME }} | ||||||
| @ -355,7 +355,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: ssh key passphrase |   - name: ssh key passphrase | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
|       host: ${{ secrets.HOST }} |       host: ${{ secrets.HOST }} | ||||||
|       username: ${{ secrets.USERNAME }} |       username: ${{ secrets.USERNAME }} | ||||||
| @ -381,7 +381,7 @@ Now you can adjust you config: | |||||||
| 
 | 
 | ||||||
| ```diff | ```diff | ||||||
|   - name: ssh key passphrase |   - name: ssh key passphrase | ||||||
|     uses: appleboy/ssh-action@v0.2.0 |     uses: appleboy/ssh-action@v1.0.0 | ||||||
|     with: |     with: | ||||||
|       host: ${{ secrets.HOST }} |       host: ${{ secrets.HOST }} | ||||||
|       username: ${{ secrets.USERNAME }} |       username: ${{ secrets.USERNAME }} | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 appleboy
						appleboy