mirror of
				https://kkgithub.com/actions/checkout
				synced 2025-11-04 16:21:55 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			176 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			176 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 "::add-path::$(pwd)"
 | 
						|
cd ..
 |