mirror of
				https://github.com/factoriotools/factorio-docker.git
				synced 2025-10-29 16:08:06 +01: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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			461 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			461 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Check Update
 | |
| 
 | |
| on:
 | |
|   schedule:
 | |
|     - cron: "0 * * * *"
 | |
|   workflow_dispatch:
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     runs-on: ubuntu-latest
 | |
|     if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'factoriotools/factorio-docker')
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
|         with:
 | |
|           token: ${{ secrets.REPO_TOKEN }}
 | |
| 
 | |
|       - name: Run update script
 | |
|         run: ./update.sh
 | |
|         shell: bash
 |