mirror of
				https://github.com/actions/download-artifact.git
				synced 2025-10-31 09:33:41 +00:00 
			
		
		
		
	Update to latest actions/artifact NPM package (#195)
* Use latest actions/artifact NPM package + misc updates * Use node 18 + caching in CI * Run npm release * Use node 16 for CI + devcontainer
This commit is contained in:
		
							parent
							
								
									d2278a10ef
								
							
						
					
					
						commit
						9bc31d5ccc
					
				
							
								
								
									
										6
									
								
								.devcontainer/devcontainer.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								.devcontainer/devcontainer.json
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,6 @@ | ||||
| // For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||||
| // README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node | ||||
| { | ||||
| 	"name": "@actions/download-artifact", | ||||
| 	"image": "mcr.microsoft.com/devcontainers/typescript-node:0-16" | ||||
| } | ||||
							
								
								
									
										11
									
								
								.github/workflows/check-dist.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										11
									
								
								.github/workflows/check-dist.yml
									
									
									
									
										vendored
									
									
								
							| @ -22,12 +22,13 @@ jobs: | ||||
|     runs-on: ubuntu-latest | ||||
| 
 | ||||
|     steps: | ||||
|       - uses: actions/checkout@v2 | ||||
|       - uses: actions/checkout@v3 | ||||
| 
 | ||||
|       - name: Set Node.js 12.x | ||||
|         uses: actions/setup-node@v1 | ||||
|       - name: Setup Node 16 | ||||
|         uses: actions/setup-node@v3 | ||||
|         with: | ||||
|           node-version: 12.x | ||||
|           node-version: 16.x | ||||
|           cache: 'npm' | ||||
| 
 | ||||
|       - name: Install dependencies | ||||
|         run: npm ci | ||||
| @ -45,7 +46,7 @@ jobs: | ||||
|         id: diff | ||||
| 
 | ||||
|       # If index.js was different than expected, upload the expected version as an artifact | ||||
|       - uses: actions/upload-artifact@v2 | ||||
|       - uses: actions/upload-artifact@v3 | ||||
|         if: ${{ failure() && steps.diff.conclusion == 'failure' }} | ||||
|         with: | ||||
|           name: dist | ||||
|  | ||||
							
								
								
									
										2
									
								
								.github/workflows/licensed.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/licensed.yml
									
									
									
									
										vendored
									
									
								
							| @ -13,7 +13,7 @@ jobs: | ||||
|     runs-on: ubuntu-latest | ||||
|     name: Check licenses | ||||
|     steps: | ||||
|       - uses: actions/checkout@v2 | ||||
|       - uses: actions/checkout@v3 | ||||
|       - run: npm ci | ||||
|       - name: Install licensed | ||||
|         run: | | ||||
|  | ||||
							
								
								
									
										10
									
								
								.github/workflows/test.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								.github/workflows/test.yml
									
									
									
									
										vendored
									
									
								
							| @ -21,12 +21,14 @@ jobs: | ||||
| 
 | ||||
|     steps: | ||||
|     - name: Checkout | ||||
|       uses: actions/checkout@v2 | ||||
|       uses: actions/checkout@v3 | ||||
| 
 | ||||
|     - name: Set Node.js 12.x | ||||
|       uses: actions/setup-node@v1 | ||||
|     # using node 16 since that is what the latest version of the runner ships with | ||||
|     - name: Setup Node 16 | ||||
|       uses: actions/setup-node@v3 | ||||
|       with: | ||||
|         node-version: 12.x | ||||
|         node-version: 16.x | ||||
|         cache: 'npm' | ||||
| 
 | ||||
|     - name: npm install | ||||
|       run: npm install | ||||
|  | ||||
							
								
								
									
										2
									
								
								.licenses/npm/@actions/artifact.dep.yml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2
									
								
								.licenses/npm/@actions/artifact.dep.yml
									
									
									
										generated
									
									
									
								
							| @ -1,6 +1,6 @@ | ||||
| --- | ||||
| name: "@actions/artifact" | ||||
| version: 1.0.0 | ||||
| version: 1.1.1 | ||||
| type: npm | ||||
| summary: Actions artifact lib | ||||
| homepage: https://github.com/actions/toolkit/tree/main/packages/artifact | ||||
|  | ||||
							
								
								
									
										10
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								README.md
									
									
									
									
									
								
							| @ -21,7 +21,7 @@ See [action.yml](action.yml) | ||||
| Basic (download to the current working directory): | ||||
| ```yaml | ||||
| steps: | ||||
| - uses: actions/checkout@v2 | ||||
| - uses: actions/checkout@v3 | ||||
| 
 | ||||
| - uses: actions/download-artifact@v3 | ||||
|   with: | ||||
| @ -34,7 +34,7 @@ steps: | ||||
| Download to a specific directory: | ||||
| ```yaml | ||||
| steps: | ||||
| - uses: actions/checkout@v2 | ||||
| - uses: actions/checkout@v3 | ||||
| 
 | ||||
| - uses: actions/download-artifact@v3 | ||||
|   with: | ||||
| @ -93,7 +93,7 @@ Example, if there are two artifacts `Artifact-A` and `Artifact-B`, and the direc | ||||
| Download all artifacts to a specific directory | ||||
| ```yaml | ||||
| steps: | ||||
| - uses: actions/checkout@v2 | ||||
| - uses: actions/checkout@v3 | ||||
| 
 | ||||
| - uses: actions/download-artifact@v3 | ||||
|   with: | ||||
| @ -107,7 +107,7 @@ steps: | ||||
| Download all artifacts to the current working directory | ||||
| ```yaml | ||||
| steps: | ||||
| - uses: actions/checkout@v2 | ||||
| - uses: actions/checkout@v3 | ||||
| 
 | ||||
| - uses: actions/download-artifact@v3 | ||||
| 
 | ||||
| @ -121,7 +121,7 @@ The `download-path` step output contains information regarding where the artifac | ||||
| 
 | ||||
| ```yaml | ||||
| steps: | ||||
| - uses: actions/checkout@v2 | ||||
| - uses: actions/checkout@v3 | ||||
| 
 | ||||
| - uses: actions/download-artifact@v3 | ||||
|   id: download | ||||
|  | ||||
							
								
								
									
										1049
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1049
									
								
								dist/index.js
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										44
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										44
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @ -9,7 +9,7 @@ | ||||
|       "version": "3.0.0", | ||||
|       "license": "MIT", | ||||
|       "dependencies": { | ||||
|         "@actions/artifact": "^1.0.0", | ||||
|         "@actions/artifact": "^1.1.1", | ||||
|         "@actions/core": "^1.10.0" | ||||
|       }, | ||||
|       "devDependencies": { | ||||
| @ -24,12 +24,12 @@ | ||||
|       } | ||||
|     }, | ||||
|     "node_modules/@actions/artifact": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/artifact/-/artifact-1.0.0.tgz", | ||||
|       "integrity": "sha512-oje+cCiM2maVwoiN+LT9kh2C6UqiTcS1tDKins+nRfckX+C8JJD2kAmzpD5fn/p5Dibjrqk1mtwreAzgNxHrDg==", | ||||
|       "version": "1.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/artifact/-/artifact-1.1.1.tgz", | ||||
|       "integrity": "sha512-Vv4y0EW0ptEkU+Pjs5RGS/0EryTvI6s79LjSV9Gg/h+O3H/ddpjhuX/Bi/HZE4pbNPyjGtQjbdFWphkZhmgabA==", | ||||
|       "dependencies": { | ||||
|         "@actions/core": "^1.2.6", | ||||
|         "@actions/http-client": "^1.0.11", | ||||
|         "@actions/core": "^1.9.1", | ||||
|         "@actions/http-client": "^2.0.1", | ||||
|         "tmp": "^0.2.1", | ||||
|         "tmp-promise": "^3.0.2" | ||||
|       } | ||||
| @ -43,7 +43,7 @@ | ||||
|         "uuid": "^8.3.2" | ||||
|       } | ||||
|     }, | ||||
|     "node_modules/@actions/core/node_modules/@actions/http-client": { | ||||
|     "node_modules/@actions/http-client": { | ||||
|       "version": "2.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", | ||||
|       "integrity": "sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==", | ||||
| @ -51,14 +51,6 @@ | ||||
|         "tunnel": "^0.0.6" | ||||
|       } | ||||
|     }, | ||||
|     "node_modules/@actions/http-client": { | ||||
|       "version": "1.0.11", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz", | ||||
|       "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==", | ||||
|       "dependencies": { | ||||
|         "tunnel": "0.0.6" | ||||
|       } | ||||
|     }, | ||||
|     "node_modules/@babel/code-frame": { | ||||
|       "version": "7.8.3", | ||||
|       "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", | ||||
| @ -3157,12 +3149,12 @@ | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "@actions/artifact": { | ||||
|       "version": "1.0.0", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/artifact/-/artifact-1.0.0.tgz", | ||||
|       "integrity": "sha512-oje+cCiM2maVwoiN+LT9kh2C6UqiTcS1tDKins+nRfckX+C8JJD2kAmzpD5fn/p5Dibjrqk1mtwreAzgNxHrDg==", | ||||
|       "version": "1.1.1", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/artifact/-/artifact-1.1.1.tgz", | ||||
|       "integrity": "sha512-Vv4y0EW0ptEkU+Pjs5RGS/0EryTvI6s79LjSV9Gg/h+O3H/ddpjhuX/Bi/HZE4pbNPyjGtQjbdFWphkZhmgabA==", | ||||
|       "requires": { | ||||
|         "@actions/core": "^1.2.6", | ||||
|         "@actions/http-client": "^1.0.11", | ||||
|         "@actions/core": "^1.9.1", | ||||
|         "@actions/http-client": "^2.0.1", | ||||
|         "tmp": "^0.2.1", | ||||
|         "tmp-promise": "^3.0.2" | ||||
|       } | ||||
| @ -3174,8 +3166,8 @@ | ||||
|       "requires": { | ||||
|         "@actions/http-client": "^2.0.1", | ||||
|         "uuid": "^8.3.2" | ||||
|       } | ||||
|     }, | ||||
|       "dependencies": { | ||||
|     "@actions/http-client": { | ||||
|       "version": "2.0.1", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz", | ||||
| @ -3183,16 +3175,6 @@ | ||||
|       "requires": { | ||||
|         "tunnel": "^0.0.6" | ||||
|       } | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "@actions/http-client": { | ||||
|       "version": "1.0.11", | ||||
|       "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz", | ||||
|       "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==", | ||||
|       "requires": { | ||||
|         "tunnel": "0.0.6" | ||||
|       } | ||||
|     }, | ||||
|     "@babel/code-frame": { | ||||
|       "version": "7.8.3", | ||||
|  | ||||
| @ -28,7 +28,7 @@ | ||||
|   }, | ||||
|   "homepage": "https://github.com/actions/download-artifact#readme", | ||||
|   "dependencies": { | ||||
|     "@actions/artifact": "^1.0.0", | ||||
|     "@actions/artifact": "^1.1.1", | ||||
|     "@actions/core": "^1.10.0" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user