Bytter til distroless image og endrer til docker-build-push for å generere sbom ved bygging #931
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ktlint | |
on: | |
pull_request: | |
branches-ignore: | |
- dependabot/* | |
jobs: | |
Ktlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: "Install ktlint" | |
uses: nbadal/action-ktlint-setup@v1 | |
with: | |
ktlint_version: '1.5.0' | |
- run: ktlint | |
shell: bash |