6 Commits

Author SHA1 Message Date
Arne Jørgensen 88386d9893 feat: Add problem matcher
* Add problem matcher

* Fix loading tar file from artifacts
2020-12-05 17:34:32 +00:00
Arne Jørgensen 836016a45f chore: add dependabot config 2020-12-05 17:23:00 +00:00
Bruno Paz eb9b96be61 feat: update hadolint version and use alpine 2020-04-10 11:54:11 +01:00
Bruno Paz 2a819735f7 chore: create FUNDING.yml 2019-12-03 20:08:54 +00:00
Bruno Paz 5a3e6fd90a docs: Change name in readme 2019-10-03 21:31:44 +01:00
Bruno Paz 2d3af3ec16 fix: action name was already in use 2019-10-02 22:17:00 +01:00
8 changed files with 40 additions and 6 deletions
+4
View File
@@ -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
+10
View File
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
+1 -1
View File
@@ -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
View File
@@ -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 -1
View File
@@ -1,4 +1,4 @@
# hadolint-action Action
# Hadolint GitHub Action
> Action that runs [Hadolint](https://github.com/hadolint/hadolint) Dockerfile linting tool.
+1 -1
View File
@@ -1,4 +1,4 @@
name: 'Hadolint'
name: 'Hadolint Action'
description: 'Action that runs Hadolint Dockerfile linting tool'
author: 'Bruno Paz'
inputs:
Executable
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
echo '::add-matcher::problem-matcher.json'
hadolint "$@"
+15
View File
@@ -0,0 +1,15 @@
{
"problemMatcher": [
{
"owner": "hadolint",
"pattern": [
{
"regexp": "(.*)\\:(\\d+)\\s(.*)",
"file": 1,
"line": 2,
"message": 3
}
]
}
]
}