chore: update pre-commit dependencies to latest versions #384
This file contains hidden or 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: lint-dockerfiles | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| paths: | |
| - 'Dockerfile' | |
| - 'docker-compose.yaml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Lint Docker Compose files | |
| run: docker compose config -q --no-interpolate || exit 1 | |
| - name: Lint Dockerfiles | |
| uses: hadolint/[email protected] | |
| with: | |
| ignore: "DL3013" |