This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [hadolint/hadolint-action](https://github.com/hadolint/hadolint-action) | action | minor | `v3.2.0` -> `v3.3.0` |
---
### Release Notes
<details>
<summary>hadolint/hadolint-action (hadolint/hadolint-action)</summary>
### [`v3.3.0`](https://github.com/hadolint/hadolint-action/releases/tag/v3.3.0)
[Compare Source](https://github.com/hadolint/hadolint-action/compare/v3.2.0...v3.3.0)
##### Features
- trigger release workflow ([2332a7b](2332a7b74a))
</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 is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMjMuMCIsInVwZGF0ZWRJblZlciI6IjQxLjEyMy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJ0eXBlL2RlcGVuZGVuY2llcyJdfQ==-->
Reviewed-on: #20
Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk>
Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk>
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: CI
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
    types:
 | 
						|
      - opened
 | 
						|
      - edited
 | 
						|
      - synchronize
 | 
						|
      - reopened
 | 
						|
 | 
						|
jobs:
 | 
						|
  ci:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Check out repository code
 | 
						|
        uses: actions/checkout@v5.0.0
 | 
						|
        with:
 | 
						|
          fetch-depth: 0
 | 
						|
 | 
						|
      - name: Run Hadolint
 | 
						|
        uses: hadolint/hadolint-action@v3.3.0
 | 
						|
        with:
 | 
						|
          dockerfile: Dockerfile
 | 
						|
          output-file: hadolint.out
 | 
						|
          format: sonarqube
 | 
						|
          no-fail: true
 | 
						|
 | 
						|
      # - name: SonarQube Scan
 | 
						|
      #   uses: SonarSource/sonarqube-scan-action@v5.2.0
 | 
						|
      #   env:
 | 
						|
      #     SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}
 | 
						|
      #     SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
 | 
						|
 | 
						|
      # - name: Snyk SAST Scan
 | 
						|
      #   uses: snyk/actions/python@master
 | 
						|
      #   env:
 | 
						|
      #     SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
 | 
						|
      #   with:
 | 
						|
      #     # command: snyk
 | 
						|
      #     args: snyk code test --all-projects --exclude=.archive
 | 
						|
 | 
						|
      - name: Snyk Vulnerability Scan
 | 
						|
        uses: snyk/actions/python@master
 | 
						|
        continue-on-error: true # Sometimes vulns aren't immediately fixable
 | 
						|
        env:
 | 
						|
          SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
 | 
						|
        with:
 | 
						|
          args: test --all-projects
 |