mirror of
				https://code.forgejo.org/actions/checkout.git
				synced 2025-10-31 21:12:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			180 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| mkdir override-git-version
 | |
| cd override-git-version
 | |
| echo "#!/bin/sh" > git
 | |
| echo "echo override git version 1.2.3" >> git
 | |
| chmod +x git
 | |
| echo "$(pwd)" >> $GITHUB_PATH
 | |
| cd ..
 |