mirror of
				https://github.com/actions/setup-dotnet.git
				synced 2025-10-31 23:43:44 +00:00 
			
		
		
		
	Merge pull request #358 from akv-platform/apply-reusable-workflows
Update action to use reusable workflows
This commit is contained in:
		
						commit
						3f3ad54c0c
					
				
							
								
								
									
										17
									
								
								.github/workflows/basic-validation.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								.github/workflows/basic-validation.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,17 @@ | |||||||
|  | name: Basic validation | ||||||
|  | 
 | ||||||
|  | on: | ||||||
|  |   pull_request: | ||||||
|  |     paths-ignore: | ||||||
|  |       - '**.md' | ||||||
|  |   push: | ||||||
|  |     branches: | ||||||
|  |       - main | ||||||
|  |       - releases/* | ||||||
|  |     paths-ignore: | ||||||
|  |       - '**.md' | ||||||
|  | 
 | ||||||
|  | jobs: | ||||||
|  |   call-basic-validation: | ||||||
|  |     name: Basic validation | ||||||
|  |     uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main | ||||||
							
								
								
									
										41
									
								
								.github/workflows/check-dist.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										41
									
								
								.github/workflows/check-dist.yml
									
									
									
									
										vendored
									
									
								
							| @ -1,8 +1,3 @@ | |||||||
| # `dist/index.js` is a special file in Actions. |  | ||||||
| # When you reference an action with `uses:` in a workflow, |  | ||||||
| # `index.js` is the code that will run. |  | ||||||
| # For our project, we generate this file through a build process from other source files. |  | ||||||
| # We need to make sure the checked-in `index.js` actually matches what we expect it to be. |  | ||||||
| name: Check dist/ | name: Check dist/ | ||||||
| 
 | 
 | ||||||
| on: | on: | ||||||
| @ -17,36 +12,6 @@ on: | |||||||
|   workflow_dispatch: |   workflow_dispatch: | ||||||
| 
 | 
 | ||||||
| jobs: | jobs: | ||||||
|   check-dist: |   call-check-dist: | ||||||
|     runs-on: ubuntu-latest |     name: Check dist/ | ||||||
| 
 |     uses: actions/reusable-workflows/.github/workflows/check-dist.yml@main | ||||||
|     steps: |  | ||||||
|       - uses: actions/checkout@v3 |  | ||||||
| 
 |  | ||||||
|       - name: Set Node.js 16 |  | ||||||
|         uses: actions/setup-node@v3 |  | ||||||
|         with: |  | ||||||
|           node-version: 16.x |  | ||||||
|           cache: npm |  | ||||||
| 
 |  | ||||||
|       - name: Install dependencies |  | ||||||
|         run: npm ci --ignore-scripts |  | ||||||
| 
 |  | ||||||
|       - name: Rebuild the dist/ directory |  | ||||||
|         run: npm run build |  | ||||||
| 
 |  | ||||||
|       - name: Compare the expected and actual dist/ directories |  | ||||||
|         run: | |  | ||||||
|           if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then |  | ||||||
|             echo "Detected uncommitted changes after build.  See status below:" |  | ||||||
|             git diff |  | ||||||
|             exit 1 |  | ||||||
|           fi |  | ||||||
|         id: diff |  | ||||||
| 
 |  | ||||||
|       # If index.js was different than expected, upload the expected version as an artifact |  | ||||||
|       - uses: actions/upload-artifact@v3 |  | ||||||
|         if: ${{ failure() && steps.diff.conclusion == 'failure' }} |  | ||||||
|         with: |  | ||||||
|           name: dist |  | ||||||
|           path: dist/ |  | ||||||
							
								
								
									
										66
									
								
								.github/workflows/codeql-analysis.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										66
									
								
								.github/workflows/codeql-analysis.yml
									
									
									
									
										vendored
									
									
								
							| @ -1,70 +1,14 @@ | |||||||
| # For most projects, this workflow file will not need changing; you simply need | name: CodeQL analysis | ||||||
| # to commit it to your repository. |  | ||||||
| # |  | ||||||
| # You may wish to alter this file to override the set of languages analyzed, |  | ||||||
| # or to provide custom queries or build logic. |  | ||||||
| # |  | ||||||
| # ******** NOTE ******** |  | ||||||
| # We have attempted to detect the languages in your repository. Please check |  | ||||||
| # the `language` matrix defined below to confirm you have the correct set of |  | ||||||
| # supported CodeQL languages. |  | ||||||
| # |  | ||||||
| name: "CodeQL" |  | ||||||
| 
 | 
 | ||||||
| on: | on: | ||||||
|   push: |   push: | ||||||
|     branches: [ main ] |     branches: [ main ] | ||||||
|   pull_request: |   pull_request: | ||||||
|     # The branches below must be a subset of the branches above |  | ||||||
|     branches: [ main ] |     branches: [ main ] | ||||||
|   schedule: |   schedule: | ||||||
|     - cron: '23 19 * * 0' |     - cron: '0 3 * * 0' | ||||||
| 
 | 
 | ||||||
| jobs: | jobs: | ||||||
|   analyze: |   call-codeQL-analysis: | ||||||
|     name: Analyze |     name: CodeQL analysis  | ||||||
|     runs-on: ubuntu-latest |     uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main | ||||||
|     permissions: |  | ||||||
|       actions: read |  | ||||||
|       contents: read |  | ||||||
|       security-events: write |  | ||||||
| 
 |  | ||||||
|     strategy: |  | ||||||
|       fail-fast: false |  | ||||||
|       matrix: |  | ||||||
|         language: [ 'javascript' ] |  | ||||||
|         # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] |  | ||||||
|         # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support |  | ||||||
| 
 |  | ||||||
|     steps: |  | ||||||
|     - name: Checkout repository |  | ||||||
|       uses: actions/checkout@v3 |  | ||||||
| 
 |  | ||||||
|     # Initializes the CodeQL tools for scanning. |  | ||||||
|     - name: Initialize CodeQL |  | ||||||
|       uses: github/codeql-action/init@v2 |  | ||||||
|       with: |  | ||||||
|         languages: ${{ matrix.language }} |  | ||||||
|         # If you wish to specify custom queries, you can do so here or in a config file. |  | ||||||
|         # By default, queries listed here will override any specified in a config file. |  | ||||||
|         # Prefix the list here with "+" to use these queries and those in the config file. |  | ||||||
|         # queries: ./path/to/local/query, your-org/your-repo/queries@main |  | ||||||
| 
 |  | ||||||
|     # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java). |  | ||||||
|     # If this step fails, then you should remove it and run the build manually (see below) |  | ||||||
|     - name: Autobuild |  | ||||||
|       uses: github/codeql-action/autobuild@v2 |  | ||||||
| 
 |  | ||||||
|     # ℹ️ Command-line programs to run using the OS shell. |  | ||||||
|     # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun |  | ||||||
| 
 |  | ||||||
|     # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines |  | ||||||
|     #    and modify them (or add more) to build your code if your project |  | ||||||
|     #    uses a compiled language |  | ||||||
| 
 |  | ||||||
|     #- run: | |  | ||||||
|     #   make bootstrap |  | ||||||
|     #   make release |  | ||||||
| 
 |  | ||||||
|     - name: Perform CodeQL Analysis |  | ||||||
|       uses: github/codeql-action/analyze@v2 |  | ||||||
| @ -1,4 +1,4 @@ | |||||||
| name: Main workflow | name: e2e tests | ||||||
| 
 | 
 | ||||||
| on: | on: | ||||||
|   pull_request: |   pull_request: | ||||||
| @ -12,28 +12,6 @@ on: | |||||||
|       - '**.md' |       - '**.md' | ||||||
| 
 | 
 | ||||||
| jobs: | jobs: | ||||||
|   build: |  | ||||||
|     runs-on: ${{ matrix.operating-system }} |  | ||||||
|     strategy: |  | ||||||
|       fail-fast: false |  | ||||||
|       matrix: |  | ||||||
|         operating-system: [ubuntu-latest, windows-latest, macOS-latest] |  | ||||||
|     steps: |  | ||||||
|     - name: Checkout |  | ||||||
|       uses: actions/checkout@v3 |  | ||||||
|     - name: Set Node.js 16 |  | ||||||
|       uses: actions/setup-node@v3 |  | ||||||
|       with: |  | ||||||
|         node-version: 16.x |  | ||||||
|         cache: npm |  | ||||||
|     - run: npm ci --ignore-scripts |  | ||||||
|     - run: npm run build |  | ||||||
|     - run: npm run format-check |  | ||||||
|     - run: npm test |  | ||||||
|     - name: Verify no unstaged changes |  | ||||||
|       if: runner.os != 'windows' |  | ||||||
|       run: __tests__/verify-no-unstaged-changes.sh |  | ||||||
| 
 |  | ||||||
|   test-setup-multiple-versions: |   test-setup-multiple-versions: | ||||||
|     runs-on: ${{ matrix.operating-system }} |     runs-on: ${{ matrix.operating-system }} | ||||||
|     strategy: |     strategy: | ||||||
| @ -342,4 +320,4 @@ jobs: | |||||||
|         env: |         env: | ||||||
|           NUGET_AUTH_TOKEN: NOTATOKEN |           NUGET_AUTH_TOKEN: NOTATOKEN | ||||||
|       - name: Verify dotnet |       - name: Verify dotnet | ||||||
|         run: __tests__/verify-dotnet.sh 3.1.201 |         run: __tests__/verify-dotnet.sh 3.1.201 | ||||||
							
								
								
									
										16
									
								
								.github/workflows/licensed.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								.github/workflows/licensed.yml
									
									
									
									
										vendored
									
									
								
							| @ -10,16 +10,6 @@ on: | |||||||
|   workflow_dispatch: |   workflow_dispatch: | ||||||
| 
 | 
 | ||||||
| jobs: | jobs: | ||||||
|   test: |   call-licensed: | ||||||
|     runs-on: ubuntu-latest |     name: Licensed | ||||||
|     name: Check licenses |     uses: actions/reusable-workflows/.github/workflows/licensed.yml@main | ||||||
|     steps: |  | ||||||
|       - uses: actions/checkout@v3 |  | ||||||
|       - run: npm ci --ignore-scripts |  | ||||||
|       - name: Install licensed |  | ||||||
|         run: | |  | ||||||
|           cd $RUNNER_TEMP |  | ||||||
|           curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.4.4/licensed-3.4.4-linux-x64.tar.gz |  | ||||||
|           sudo tar -xzf licensed.tar.gz |  | ||||||
|           sudo mv licensed /usr/local/bin/licensed |  | ||||||
|       - run: licensed status |  | ||||||
| @ -1,4 +1,5 @@ | |||||||
| name: Release new action version | name: Release new action version | ||||||
|  | 
 | ||||||
| on: | on: | ||||||
|   release: |   release: | ||||||
|     types: [released] |     types: [released] | ||||||
| @ -25,4 +26,4 @@ jobs: | |||||||
|       uses: actions/publish-action@v0.2.1 |       uses: actions/publish-action@v0.2.1 | ||||||
|       with: |       with: | ||||||
|         source-tag: ${{ env.TAG_NAME }} |         source-tag: ${{ env.TAG_NAME }} | ||||||
|         slack-webhook: ${{ secrets.SLACK_WEBHOOK }} |         slack-webhook: ${{ secrets.SLACK_WEBHOOK }} | ||||||
| @ -1,7 +0,0 @@ | |||||||
| #!/bin/bash |  | ||||||
| 
 |  | ||||||
| if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then |  | ||||||
|     echo "Detected uncommitted changes after build.  See status below:" |  | ||||||
|     git diff |  | ||||||
|     exit 1 |  | ||||||
| fi |  | ||||||
| @ -8,6 +8,7 @@ | |||||||
|     "build": "tsc && ncc build", |     "build": "tsc && ncc build", | ||||||
|     "format": "prettier --write **/*.ts", |     "format": "prettier --write **/*.ts", | ||||||
|     "format-check": "prettier --check **/*.ts", |     "format-check": "prettier --check **/*.ts", | ||||||
|  |     "lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"", | ||||||
|     "prepare": "husky install", |     "prepare": "husky install", | ||||||
|     "test": "jest --coverage --config ./jest.config.js", |     "test": "jest --coverage --config ./jest.config.js", | ||||||
|     "update-installers": "nwget https://dot.net/v1/dotnet-install.ps1 -O externals/install-dotnet.ps1 && nwget https://dot.net/v1/dotnet-install.sh -O externals/install-dotnet.sh" |     "update-installers": "nwget https://dot.net/v1/dotnet-install.ps1 -O externals/install-dotnet.ps1 && nwget https://dot.net/v1/dotnet-install.sh -O externals/install-dotnet.sh" | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user