mirror of
https://github.com/hadolint/hadolint-action.git
synced 2026-07-15 13:01:44 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e374b112f | |||
| 88386d9893 | |||
| 836016a45f |
@@ -0,0 +1,10 @@
|
|||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
- package-ecosystem: "docker"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
@@ -47,7 +47,7 @@ jobs:
|
|||||||
name: action-image
|
name: action-image
|
||||||
|
|
||||||
- name: Load image into docker context
|
- name: Load image into docker context
|
||||||
run: docker load -i action-image/action.tar
|
run: docker load -i action.tar
|
||||||
|
|
||||||
- name: Get Image Name
|
- name: Get Image Name
|
||||||
id: image_name
|
id: image_name
|
||||||
|
|||||||
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
FROM hadolint/hadolint:v1.17.5-alpine
|
FROM hadolint/hadolint:v1.17.5-alpine
|
||||||
|
|
||||||
COPY LICENSE README.md /
|
COPY LICENSE README.md problem-matcher.json /
|
||||||
|
COPY hadolint.sh /usr/local/bin/hadolint.sh
|
||||||
ENTRYPOINT [ "hadolint" ]
|
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/usr/local/bin/hadolint.sh" ]
|
||||||
|
|||||||
Executable
+14
@@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# The problem-matcher definition must be present in the repository
|
||||||
|
# checkout (outside the Docker container running hadolint). We create
|
||||||
|
# a temporary folder and copy problem-matcher.json to it and make it
|
||||||
|
# readable.
|
||||||
|
TMP_FOLDER=$(mktemp -d -p .)
|
||||||
|
cp /problem-matcher.json "${TMP_FOLDER}"
|
||||||
|
chmod -R a+rX "${TMP_FOLDER}"
|
||||||
|
trap "rm -rf \"${TMP_FOLDER}\"" EXIT
|
||||||
|
|
||||||
|
echo "::add-matcher::${TMP_FOLDER}/problem-matcher.json"
|
||||||
|
|
||||||
|
hadolint "$@"
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "hadolint",
|
||||||
|
"pattern": [
|
||||||
|
{
|
||||||
|
"regexp": "(.*)\\:(\\d+)\\s(.*)",
|
||||||
|
"file": 1,
|
||||||
|
"line": 2,
|
||||||
|
"message": 3
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user