mirror of
				https://github.com/docker/setup-buildx-action.git
				synced 2025-10-31 11:04:19 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 4dfc3d6c5d
			
		
	
	
		4dfc3d6c5d
		
			
		
	
	
	
	
		
			
			Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			35 lines
		
	
	
		
			640 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			640 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: test
 | |
| 
 | |
| concurrency:
 | |
|   group: ${{ github.workflow }}-${{ github.ref }}
 | |
|   cancel-in-progress: true
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - 'master'
 | |
|       - 'releases/v*'
 | |
|   pull_request:
 | |
| 
 | |
| jobs:
 | |
|   test:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       -
 | |
|         name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
|       -
 | |
|         name: Set up Docker Buildx
 | |
|         uses: ./
 | |
|       -
 | |
|         name: Test
 | |
|         uses: docker/bake-action@v6
 | |
|         with:
 | |
|           targets: test
 | |
|       -
 | |
|         name: Upload coverage
 | |
|         uses: codecov/codecov-action@v5
 | |
|         with:
 | |
|           files: ./coverage/clover.xml
 | |
|           token: ${{ secrets.CODECOV_TOKEN }}
 |