generated from softwaredevelop/codespace-default
-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (74 loc) · 1.92 KB
/
dockerfile-linter.yml
File metadata and controls
85 lines (74 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
name: Dockerfile Linter
on:
push:
branches:
- "main"
paths:
- ".devcontainer/Dockerfile.*"
- ".devcontainer/Dockerfile"
pull_request:
branches:
- "main"
paths:
- ".devcontainer/Dockerfile.*"
- ".devcontainer/Dockerfile"
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
skip-duplicate-actions:
name: Skip Duplicate Actions
runs-on: ubuntu-latest
steps:
- uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cancel_others: true
concurrent_skipping: never
run-lint:
name: Hadolint Action
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Hadolint
uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: .devcontainer/Dockerfile
run-lint-ubuntu:
name: Hadolint Action .ubuntu
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Hadolint
uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: .devcontainer/Dockerfile.ubuntu
run-lint-alpine:
name: Hadolint Action .alpine
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Hadolint
uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: .devcontainer/Dockerfile.alpine
trivy-scan:
name: Trivy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Trivy vulnerability scanner in IaC mode
uses: aquasecurity/trivy-action@master
with:
format: "table"
ignore-unfixed: true
scan-type: "config"
severity: "CRITICAL,HIGH"
trivyignores: ".trivyignore"