From 7711466212ae47094e72e6747c78195c9b3c6f73 Mon Sep 17 00:00:00 2001 From: Wagner Santos <7467450+wagoid@users.noreply.github.com> Date: Sat, 18 Jun 2022 06:50:00 -0300 Subject: [PATCH] docs: update docs to use v5 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a564c04..8227b69 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: wagoid/commitlint-github-action@v4 + - uses: wagoid/commitlint-github-action@v5 ``` 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. @@ -26,7 +26,7 @@ Alternatively, you can run on other event types such as `on: [push]`. In that ca ## Inputs -You can supply these inputs to the `wagoid/commitlint-github-action@v4` step. +You can supply these inputs to the `wagoid/commitlint-github-action@v5` step. ### `configFile` @@ -143,7 +143,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@v4 + - uses: wagoid/commitlint-github-action@v5 env: NODE_PATH: ${{ github.workspace }}/node_modules ```