From 1a9af8e8e040e1ca1a7da67d6a45e13ba9890630 Mon Sep 17 00:00:00 2001 From: Matthias Pigulla Date: Tue, 24 Sep 2019 22:08:56 +0000 Subject: [PATCH] Update README to show correct version number in example Supersedes #3; thank you @kod-kristoff! --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b445621..98a455e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,9 @@ jobs: ... steps: - actions/checkout@v1 - - uses: webfactory/ssh-agent@v0.1 + # Make sure the @v0.1.1 matches the current version of the + # action + - uses: webfactory/ssh-agent@v0.1.1 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - ... other steps @@ -76,6 +78,7 @@ As a note to my future self, in order to work on this repo: * `node index.js` (inputs are passed through `INPUT_` env vars, but how to set `ssh-private-key`?) * Run `./node_modules/.bin/ncc build index.js` to update `dist/index.js`, which is the file actually run * Read https://help.github.com/en/articles/creating-a-javascript-action if unsure. +* Maybe update the README example when publishing a new version. ## Credits, Copyright and License