This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | major | `v4` -> `v5` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v5`](https://github.com/actions/checkout/compare/v4...v5) [Compare Source](https://github.com/actions/checkout/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45OC40IiwidXBkYXRlZEluVmVyIjoiNDEuOTguNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #23 Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk> Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # Simple workflow for deploying static content to GitHub Pages
 | |
| name: Deploy static content to Pages
 | |
| 
 | |
| on:
 | |
|   # Runs on pushes targeting the default branch
 | |
|   push:
 | |
|     branches: ["main"]
 | |
| 
 | |
|   # Allows you to run this workflow manually from the Actions tab
 | |
|   workflow_dispatch:
 | |
| 
 | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
 | |
| permissions:
 | |
|   contents: read
 | |
|   pages: write
 | |
|   id-token: write
 | |
| 
 | |
| # Allow one concurrent deployment
 | |
| concurrency:
 | |
|   group: "pages"
 | |
|   cancel-in-progress: true
 | |
| 
 | |
| jobs:
 | |
|   # Single deploy job since we're just deploying
 | |
|   deploy:
 | |
|     environment:
 | |
|       name: github-pages
 | |
|       url: ${{ steps.deployment.outputs.page_url }}
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
|       - name: Setup Pages
 | |
|         uses: actions/configure-pages@v5
 | |
|       - name: Upload artifact
 | |
|         uses: actions/upload-pages-artifact@v4
 | |
|         with:
 | |
|           # Upload entire repository
 | |
|           path: '.'
 | |
|       - name: Deploy to GitHub Pages
 | |
|         id: deployment
 | |
|         uses: actions/deploy-pages@v4
 |