diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..9abc657 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,12 @@ +name: docker bench security action +on: [push] +jobs: + actions: + runs-on: ubuntu-latest + name: A job to check docker bench security issues + steps: + # To use this repository's private action, you must check out the repository + - name: Checkout + uses: actions/checkout@v2 + - name: Docker bench security + uses: ./ # Uses an action in the root directory diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..7bf932d --- /dev/null +++ b/action.yml @@ -0,0 +1,6 @@ +# action.yml +name: "docker bench security" +description: "docker bench security" +runs: + using: "docker" + image: "Dockerfile"