From 1b96bbfa1022103325a9470d36d32ffa1dffe2cd Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Wed, 30 Dec 2020 02:41:08 +0000 Subject: [PATCH] docs: Encourage use of v1 instead of master Knowing that every pleb will copy-paste this example as-is, I'd recommend encouraging use of v1 (e.g. latest `v1.x.x` tag on this repo), instead of `master`, so that if one day you need to make a significant change to the format somehow or add/change required options, that you will do so in a SemVer compliant way and that it won't break thousands of projects already using the action. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9bb71c..d3987aa 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ jobs: name: Action Test steps: # ... - - uses: saucelabs/sauce-connect-action@master + - uses: saucelabs/sauce-connect-action@v1 with: username: ${{ secrets.SAUCE_USERNAME }} accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}