mirror of
				https://github.com/docker/setup-buildx-action.git
				synced 2025-11-04 06:34:19 +08:00 
			
		
		
		
	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>
		
			
				
	
	
		
			22 lines
		
	
	
		
			346 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			346 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: publish
 | 
						|
 | 
						|
on:
 | 
						|
  release:
 | 
						|
    types:
 | 
						|
      - published
 | 
						|
 | 
						|
jobs:
 | 
						|
  publish:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    permissions:
 | 
						|
      contents: read
 | 
						|
      id-token: write
 | 
						|
      packages: write
 | 
						|
    steps:
 | 
						|
      -
 | 
						|
        name: Checkout
 | 
						|
        uses: actions/checkout@v5
 | 
						|
      -
 | 
						|
        name: Publish
 | 
						|
        uses: actions/publish-immutable-action@v0.0.4
 |