mirror of
https://github.com/hadolint/hadolint-action.git
synced 2026-07-06 00:21:39 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 88386d9893 | |||
| 836016a45f | |||
| eb9b96be61 | |||
| 2a819735f7 | |||
| 5a3e6fd90a |
@@ -0,0 +1,4 @@
|
||||
# https://help.github.com/en/articles/displaying-a-sponsor-button-in-your-repository
|
||||
github: brpaz
|
||||
patreon: brpaz
|
||||
custom: https://www.buymeacoffee.com/Z1Bu6asGV
|
||||
@@ -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: Load image into docker context
|
||||
run: docker load -i action-image/action.tar
|
||||
run: docker load -i action.tar
|
||||
|
||||
- name: Get Image Name
|
||||
id: image_name
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
FROM hadolint/hadolint:v1.17.2
|
||||
FROM hadolint/hadolint:v1.17.5-alpine
|
||||
|
||||
COPY LICENSE README.md /
|
||||
COPY hadolint.sh /usr/local/bin/hadolint.sh
|
||||
|
||||
ENTRYPOINT [ "hadolint" ]
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/hadolint.sh" ]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# hadolint-action Action
|
||||
# Hadolint GitHub Action
|
||||
|
||||
> Action that runs [Hadolint](https://github.com/hadolint/hadolint) Dockerfile linting tool.
|
||||
|
||||
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo '::add-matcher::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