mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 07:30:32 +00:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
			dependabot
			...
			v4.2.1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | eef61447b9 | ||
|   | 6b42224f41 | ||
|   | de5a000abf | ||
|   | d632683dd7 | 
							
								
								
									
										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 | ||||||
| @@ -1,5 +1,13 @@ | |||||||
| # Changelog | # 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 | ||||||
|  | * Dependency updates by @dependabot- https://github.com/actions/checkout/pull/1777, https://github.com/actions/checkout/pull/1872 | ||||||
|  |  | ||||||
| ## v4.1.7 | ## v4.1.7 | ||||||
| * Bump the minor-npm-dependencies group across 1 directory with 4 updates by @dependabot in https://github.com/actions/checkout/pull/1739 | * Bump the minor-npm-dependencies group across 1 directory with 4 updates by @dependabot in https://github.com/actions/checkout/pull/1739 | ||||||
| * Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/actions/checkout/pull/1697 | * Bump actions/checkout from 3 to 4 by @dependabot in https://github.com/actions/checkout/pull/1697 | ||||||
|   | |||||||
| @@ -77,6 +77,16 @@ describe('ref-helper tests', () => { | |||||||
|     expect(checkoutInfo.startPoint).toBeFalsy() |     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 () => { |   it('getCheckoutInfo unqualified branch only', async () => { | ||||||
|     git.branchExists = jest.fn(async (remote: boolean, pattern: string) => { |     git.branchExists = jest.fn(async (remote: boolean, pattern: string) => { | ||||||
|       return true |       return true | ||||||
|   | |||||||
							
								
								
									
										4
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							| @@ -2005,8 +2005,8 @@ function getCheckoutInfo(git, ref, commit) { | |||||||
|             result.ref = ref; |             result.ref = ref; | ||||||
|         } |         } | ||||||
|         // refs/
 |         // refs/
 | ||||||
|         else if (upperRef.startsWith('REFS/') && commit) { |         else if (upperRef.startsWith('REFS/')) { | ||||||
|             result.ref = commit; |             result.ref = commit ? commit : ref; | ||||||
|         } |         } | ||||||
|         // Unqualified ref, check for a matching branch or tag
 |         // Unqualified ref, check for a matching branch or tag
 | ||||||
|         else { |         else { | ||||||
|   | |||||||
							
								
								
									
										20
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										20
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -1,12 +1,12 @@ | |||||||
| { | { | ||||||
|   "name": "checkout", |   "name": "checkout", | ||||||
|   "version": "4.1.7", |   "version": "4.2.1", | ||||||
|   "lockfileVersion": 3, |   "lockfileVersion": 3, | ||||||
|   "requires": true, |   "requires": true, | ||||||
|   "packages": { |   "packages": { | ||||||
|     "": { |     "": { | ||||||
|       "name": "checkout", |       "name": "checkout", | ||||||
|       "version": "4.1.7", |       "version": "4.2.1", | ||||||
|       "license": "MIT", |       "license": "MIT", | ||||||
|       "dependencies": { |       "dependencies": { | ||||||
|         "@actions/core": "^1.10.1", |         "@actions/core": "^1.10.1", | ||||||
| @@ -14,12 +14,12 @@ | |||||||
|         "@actions/github": "^6.0.0", |         "@actions/github": "^6.0.0", | ||||||
|         "@actions/io": "^1.1.3", |         "@actions/io": "^1.1.3", | ||||||
|         "@actions/tool-cache": "^2.0.1", |         "@actions/tool-cache": "^2.0.1", | ||||||
|         "uuid": "^10.0.0" |         "uuid": "^9.0.1" | ||||||
|       }, |       }, | ||||||
|       "devDependencies": { |       "devDependencies": { | ||||||
|         "@types/jest": "^29.5.12", |         "@types/jest": "^29.5.12", | ||||||
|         "@types/node": "^20.12.12", |         "@types/node": "^20.12.12", | ||||||
|         "@types/uuid": "^10.0.0", |         "@types/uuid": "^9.0.8", | ||||||
|         "@typescript-eslint/eslint-plugin": "^7.9.0", |         "@typescript-eslint/eslint-plugin": "^7.9.0", | ||||||
|         "@typescript-eslint/parser": "^7.9.0", |         "@typescript-eslint/parser": "^7.9.0", | ||||||
|         "@vercel/ncc": "^0.38.1", |         "@vercel/ncc": "^0.38.1", | ||||||
| @@ -1603,9 +1603,9 @@ | |||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/@types/uuid": { |     "node_modules/@types/uuid": { | ||||||
|       "version": "10.0.0", |       "version": "9.0.8", | ||||||
|       "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-10.0.0.tgz", |       "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", | ||||||
|       "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", |       "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", | ||||||
|       "dev": true |       "dev": true | ||||||
|     }, |     }, | ||||||
|     "node_modules/@types/yargs": { |     "node_modules/@types/yargs": { | ||||||
| @@ -6991,9 +6991,9 @@ | |||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "node_modules/uuid": { |     "node_modules/uuid": { | ||||||
|       "version": "10.0.0", |       "version": "9.0.1", | ||||||
|       "resolved": "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz", |       "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", | ||||||
|       "integrity": "sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==", |       "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", | ||||||
|       "funding": [ |       "funding": [ | ||||||
|         "https://github.com/sponsors/broofa", |         "https://github.com/sponsors/broofa", | ||||||
|         "https://github.com/sponsors/ctavan" |         "https://github.com/sponsors/ctavan" | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| { | { | ||||||
|   "name": "checkout", |   "name": "checkout", | ||||||
|   "version": "4.1.7", |   "version": "4.2.1", | ||||||
|   "description": "checkout action", |   "description": "checkout action", | ||||||
|   "main": "lib/main.js", |   "main": "lib/main.js", | ||||||
|   "scripts": { |   "scripts": { | ||||||
| @@ -33,12 +33,12 @@ | |||||||
|     "@actions/github": "^6.0.0", |     "@actions/github": "^6.0.0", | ||||||
|     "@actions/io": "^1.1.3", |     "@actions/io": "^1.1.3", | ||||||
|     "@actions/tool-cache": "^2.0.1", |     "@actions/tool-cache": "^2.0.1", | ||||||
|     "uuid": "^10.0.0" |     "uuid": "^9.0.1" | ||||||
|   }, |   }, | ||||||
|   "devDependencies": { |   "devDependencies": { | ||||||
|     "@types/jest": "^29.5.12", |     "@types/jest": "^29.5.12", | ||||||
|     "@types/node": "^20.12.12", |     "@types/node": "^20.12.12", | ||||||
|     "@types/uuid": "^10.0.0", |     "@types/uuid": "^9.0.8", | ||||||
|     "@typescript-eslint/eslint-plugin": "^7.9.0", |     "@typescript-eslint/eslint-plugin": "^7.9.0", | ||||||
|     "@typescript-eslint/parser": "^7.9.0", |     "@typescript-eslint/parser": "^7.9.0", | ||||||
|     "@vercel/ncc": "^0.38.1", |     "@vercel/ncc": "^0.38.1", | ||||||
|   | |||||||
| @@ -46,8 +46,8 @@ export async function getCheckoutInfo( | |||||||
|     result.ref = ref |     result.ref = ref | ||||||
|   } |   } | ||||||
|   // refs/ |   // refs/ | ||||||
|   else if (upperRef.startsWith('REFS/') && commit) { |   else if (upperRef.startsWith('REFS/')) { | ||||||
|     result.ref = commit |     result.ref = commit ? commit : ref | ||||||
|   } |   } | ||||||
|   // Unqualified ref, check for a matching branch or tag |   // Unqualified ref, check for a matching branch or tag | ||||||
|   else { |   else { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user