2020-12-16 19:31:39 +01:00
|
|
|
name: Hadolint
|
|
|
|
|
2022-09-15 16:51:52 +02:00
|
|
|
on: [
|
|
|
|
push,
|
|
|
|
pull_request
|
|
|
|
]
|
2020-12-16 19:31:39 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
hadolint:
|
|
|
|
name: Validate Dockerfile syntax
|
|
|
|
runs-on: ubuntu-20.04
|
2022-12-15 17:15:48 +01:00
|
|
|
timeout-minutes: 30
|
2020-12-16 19:31:39 +01:00
|
|
|
steps:
|
|
|
|
# Checkout the repo
|
|
|
|
- name: Checkout
|
2022-12-15 17:15:48 +01:00
|
|
|
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
2020-12-16 19:31:39 +01:00
|
|
|
# End Checkout the repo
|
|
|
|
|
|
|
|
|
2022-05-04 21:13:05 +02:00
|
|
|
# Download hadolint - https://github.com/hadolint/hadolint/releases
|
2020-12-16 19:31:39 +01:00
|
|
|
- name: Download hadolint
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2021-06-19 19:22:19 +02:00
|
|
|
sudo curl -L https://github.com/hadolint/hadolint/releases/download/v${HADOLINT_VERSION}/hadolint-$(uname -s)-$(uname -m) -o /usr/local/bin/hadolint && \
|
2020-12-16 19:31:39 +01:00
|
|
|
sudo chmod +x /usr/local/bin/hadolint
|
|
|
|
env:
|
2022-12-15 17:15:48 +01:00
|
|
|
HADOLINT_VERSION: 2.12.0
|
2020-12-16 19:31:39 +01:00
|
|
|
# End Download hadolint
|
|
|
|
|
|
|
|
# Test Dockerfiles
|
|
|
|
- name: Run hadolint
|
|
|
|
shell: bash
|
2021-06-19 19:22:19 +02:00
|
|
|
run: git ls-files --exclude='docker/*/Dockerfile*' --ignored --cached | xargs hadolint
|
2020-12-16 19:31:39 +01:00
|
|
|
# End Test Dockerfiles
|