From c3f0a167d0841c1f5106a4b8cd77354a4203c710 Mon Sep 17 00:00:00 2001 From: Dan McGregor <17787076+mcgregordan@users.noreply.github.com> Date: Thu, 12 Sep 2019 03:15:04 +0100 Subject: [PATCH] Fix instructions (#13) Version is tagged as `v0.1.2` not `0.1.2`. Update instructions to accurately reflect that. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3c1f311..6c52612 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add the following to your GitHub action workflow: ```yaml - name: Rubocop Linter - uses: andrewmcodes/rubocop-linter-action@0.1.2 + uses: andrewmcodes/rubocop-linter-action@v0.1.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -40,7 +40,7 @@ jobs: sudo apt-get update sudo apt-get install -y postgresql-client libpq-dev - name: Rubocop Linter - uses: andrewmcodes/rubocop-linter-action@0.1.2 + uses: andrewmcodes/rubocop-linter-action@v0.1.2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ```