From 544c83b9918ab4afd9e38586e104b79c2feebb8d Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 24 Mar 2020 10:30:05 -0700 Subject: [PATCH] Update action name in documentation The documentation was still demonstrating the use of the deprecated action arduino/actions/setup-protoc --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 662ff009..e8910dd8 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ To get the latest stable version of `protoc` just add this step: ```yaml - name: Install Protoc - uses: Arduino/actions/setup-protoc@master + uses: arduino/setup-protoc@master ``` If you want to pin a major or minor version you can use the `.x` wildcard: ```yaml - name: Install Protoc - uses: Arduino/actions/setup-protoc@master + uses: arduino/setup-protoc@master with: version: '3.x' ``` @@ -24,7 +24,7 @@ You can also require to include releases marked as `pre-release` in Github using ```yaml - name: Install Protoc - uses: Arduino/actions/setup-protoc@master + uses: arduino/setup-protoc@master with: version: '3.x' include-pre-releases: true @@ -34,7 +34,7 @@ To pin the exact version: ```yaml - name: Install Protoc - uses: Arduino/actions/setup-protoc@master + uses: arduino/setup-protoc@master with: version: '3.9.1' ```