diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-12-04 13:24:18 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-12-04 13:24:46 +0100 |
commit | 8cd1fa8945946c2a632f4acdcd382e4597c72fec (patch) | |
tree | e95c2716236e2ab8e16159d38ed9aa261cfe79f9 | |
parent | 76af219e3e481222e6fece34c7c022d6a58998e1 (diff) | |
download | rneovim-8cd1fa8945946c2a632f4acdcd382e4597c72fec.tar.gz rneovim-8cd1fa8945946c2a632f4acdcd382e4597c72fec.tar.bz2 rneovim-8cd1fa8945946c2a632f4acdcd382e4597c72fec.zip |
ci: use tag v2 when using checkout action
Using v2 automatically fetches the latest minor patch for v2, meaning
free bug fixes without needing to manually update the tag version.
-rw-r--r-- | .github/workflows/commitlint.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 559d8eae83..6c74ec99d3 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -9,7 +9,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2.3.1 + - uses: actions/checkout@v2 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} |