From 9c4a2f86a587e6d158b5e560e513162e0ff68fb9 Mon Sep 17 00:00:00 2001 From: Wagner Santos <7467450+wagoid@users.noreply.github.com> Date: Mon, 5 Apr 2021 05:00:44 -0300 Subject: [PATCH] docs: use v3 action on README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80bde6d..8937cbe 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - uses: wagoid/commitlint-github-action@v2 + - uses: wagoid/commitlint-github-action@v3 ``` Alternatively, you can run on other event types such as `on: [push]`. In that case the action will lint the push event's commit(s) instead of linting commits from a pull request. You can also combine `push` and `pull_request` together in the same workflow. @@ -138,7 +138,7 @@ jobs: - run: npm install # Run the commitlint action, considering its own dependencies and yours as well 🚀 # `github.workspace` is the path to your repository. - - uses: wagoid/commitlint-github-action@v2 + - uses: wagoid/commitlint-github-action@v3 env: NODE_PATH: ${{ github.workspace }}/node_modules ```