From 33f8aa30dd74d746436537fa50b0073a575aa53e Mon Sep 17 00:00:00 2001 From: Wagner Santos Date: Fri, 4 Oct 2019 00:39:36 -0300 Subject: [PATCH] fix: revert action to use debian image Somehow when using alpine image, github actions was not running the entrypoint --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e15f9c2..939dea3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:10-alpine +FROM node:10 COPY package*.json / diff --git a/README.md b/README.md index 5cfcb0c..c1fec62 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,13 @@ name: Commitlint on: [pull_request] jobs: - commitlint: + lint: runs-on: ubuntu-latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v1 - - uses: wagoid/commitlint-github-action@v1.0.0 + - uses: wagoid/commitlint-github-action@v1.1.0 ``` ## Inputs