mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 05:25:55 +08:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			d3fe023418
			...
			v4.2.1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | eef61447b9 | ||
|  | 6b42224f41 | ||
|  | de5a000abf | 
							
								
								
									
										20
									
								
								.github/workflows/publish-immutable-actions.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								.github/workflows/publish-immutable-actions.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| name: 'Publish Immutable Action Version' | ||||
|  | ||||
| on: | ||||
|   release: | ||||
|     types: [published] | ||||
|  | ||||
| jobs: | ||||
|   publish: | ||||
|     runs-on: ubuntu-latest | ||||
|     permissions: | ||||
|       contents: read | ||||
|       id-token: write | ||||
|       packages: write | ||||
|  | ||||
|     steps: | ||||
|       - name: Checking out | ||||
|         uses: actions/checkout@v4 | ||||
|       - name: Publish | ||||
|         id: publish | ||||
|         uses: actions/publish-immutable-action@0.0.3 | ||||
							
								
								
									
										7
									
								
								.github/workflows/update-main-version.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										7
									
								
								.github/workflows/update-main-version.yml
									
									
									
									
										vendored
									
									
								
							| @@ -18,9 +18,6 @@ on: | ||||
| jobs: | ||||
|   tag: | ||||
|     runs-on: ubuntu-latest | ||||
|     env: | ||||
|       TARGET: ${{ github.event.inputs.target }} | ||||
|       MAIN_VERSION: ${{ github.event.inputs.major_version }} | ||||
|     steps: | ||||
|     # Note this update workflow can also be used as a rollback tool. | ||||
|     # For that reason, it's best to pin `actions/checkout` to a known, stable version | ||||
| @@ -33,6 +30,6 @@ jobs: | ||||
|         git config user.name "github-actions[bot]" | ||||
|         git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||||
|     - name: Tag new target | ||||
|       run: git tag -f "$MAIN_VERSION" "$TARGET" | ||||
|       run: git tag -f ${{ github.event.inputs.major_version }} ${{ github.event.inputs.target }} | ||||
|     - name: Push new tag | ||||
|       run: git push origin "$MAIN_VERSION" --force | ||||
|       run: git push origin ${{ github.event.inputs.major_version }} --force | ||||
|   | ||||
| @@ -1,5 +1,8 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## v4.2.1 | ||||
| * Check out other refs/* by commit if provided, fall back to ref by @orhantoy in https://github.com/actions/checkout/pull/1924 | ||||
|  | ||||
| ## v4.2.0 | ||||
|  | ||||
| * Add Ref and Commit outputs by @lucacome in https://github.com/actions/checkout/pull/1180 | ||||
|   | ||||
| @@ -77,6 +77,16 @@ describe('ref-helper tests', () => { | ||||
|     expect(checkoutInfo.startPoint).toBeFalsy() | ||||
|   }) | ||||
|  | ||||
|   it('getCheckoutInfo refs/ without commit', async () => { | ||||
|     const checkoutInfo = await refHelper.getCheckoutInfo( | ||||
|       git, | ||||
|       'refs/non-standard-ref', | ||||
|       '' | ||||
|     ) | ||||
|     expect(checkoutInfo.ref).toBe('refs/non-standard-ref') | ||||
|     expect(checkoutInfo.startPoint).toBeFalsy() | ||||
|   }) | ||||
|  | ||||
|   it('getCheckoutInfo unqualified branch only', async () => { | ||||
|     git.branchExists = jest.fn(async (remote: boolean, pattern: string) => { | ||||
|       return true | ||||
|   | ||||
							
								
								
									
										4
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -2005,8 +2005,8 @@ function getCheckoutInfo(git, ref, commit) { | ||||
|             result.ref = ref; | ||||
|         } | ||||
|         // refs/
 | ||||
|         else if (upperRef.startsWith('REFS/') && commit) { | ||||
|             result.ref = commit; | ||||
|         else if (upperRef.startsWith('REFS/')) { | ||||
|             result.ref = commit ? commit : ref; | ||||
|         } | ||||
|         // Unqualified ref, check for a matching branch or tag
 | ||||
|         else { | ||||
|   | ||||
							
								
								
									
										4
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										4
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -1,12 +1,12 @@ | ||||
| { | ||||
|   "name": "checkout", | ||||
|   "version": "4.2.0", | ||||
|   "version": "4.2.1", | ||||
|   "lockfileVersion": 3, | ||||
|   "requires": true, | ||||
|   "packages": { | ||||
|     "": { | ||||
|       "name": "checkout", | ||||
|       "version": "4.2.0", | ||||
|       "version": "4.2.1", | ||||
|       "license": "MIT", | ||||
|       "dependencies": { | ||||
|         "@actions/core": "^1.10.1", | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| { | ||||
|   "name": "checkout", | ||||
|   "version": "4.2.0", | ||||
|   "version": "4.2.1", | ||||
|   "description": "checkout action", | ||||
|   "main": "lib/main.js", | ||||
|   "scripts": { | ||||
|   | ||||
| @@ -46,8 +46,8 @@ export async function getCheckoutInfo( | ||||
|     result.ref = ref | ||||
|   } | ||||
|   // refs/ | ||||
|   else if (upperRef.startsWith('REFS/') && commit) { | ||||
|     result.ref = commit | ||||
|   else if (upperRef.startsWith('REFS/')) { | ||||
|     result.ref = commit ? commit : ref | ||||
|   } | ||||
|   // Unqualified ref, check for a matching branch or tag | ||||
|   else { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user