mirror of
				https://github.com/appleboy/ssh-action.git
				synced 2025-11-04 01:20:10 +08:00 
			
		
		
		
	- Update the version of `appleboy/ssh-action` from `v1.2.1` to `v1.2.2` in multiple files - Modify the bug report template to reflect the updated action version - Change the action version in the stable workflow file - Adjust the action version in the README files for consistency across documentation - Ensure the action version is updated in both Chinese language README files Signed-off-by: appleboy <appleboy.tw@gmail.com>
		
			
				
	
	
		
			42 lines
		
	
	
		
			1014 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1014 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
name: Bug report
 | 
						|
about: Create a report to help us improve
 | 
						|
title: ""
 | 
						|
labels: bug
 | 
						|
assignees: appleboy
 | 
						|
---
 | 
						|
 | 
						|
## Describe the bug
 | 
						|
 | 
						|
A clear and concise description of what the bug is. If applicable, add screenshots to help explain your problem.
 | 
						|
 | 
						|
## Yaml Config
 | 
						|
 | 
						|
Please post your Yaml configuration file along with the output results.
 | 
						|
 | 
						|
```yaml
 | 
						|
name: remote ssh command
 | 
						|
on: [push]
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    name: Build
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: executing remote ssh commands using password
 | 
						|
        uses: appleboy/ssh-action@v1.2.2
 | 
						|
        with:
 | 
						|
          host: ${{ secrets.HOST }}
 | 
						|
          username: ${{ secrets.USERNAME }}
 | 
						|
          password: ${{ secrets.PASSWORD }}
 | 
						|
          port: ${{ secrets.PORT }}
 | 
						|
          script: whoami
 | 
						|
```
 | 
						|
 | 
						|
## Related environment
 | 
						|
 | 
						|
Please provide the following information:
 | 
						|
 | 
						|
1. Your hosting provider information, such as DigitalOcean, Linode, AWS, or GCP.
 | 
						|
2. The version information of your host's SSH service.
 | 
						|
3. The information from your host's SSH configuration file.
 |