From a839c172abd5dc15607e656bc386df7d5e1b68e1 Mon Sep 17 00:00:00 2001 From: Riccardo Rigutini <47950599+richardrigutins@users.noreply.github.com> Date: Mon, 25 Sep 2023 21:58:42 +0200 Subject: [PATCH] Update examples in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3dd2ec8..f0203e0 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ It can be useful for automating repetitive tasks such as updating version number # Replace all the occurrences of 'hello' with 'world' in all the txt files, # excluding the node_modules folder - name: Replace multiple files - uses: richardrigutins/replace-in-files@v1 + uses: richardrigutins/replace-in-files@v2 with: files: '**/*.txt' search-text: 'hello' @@ -44,7 +44,7 @@ It can be useful for automating repetitive tasks such as updating version number # Replace all the occurrences of '{0}' with '42' in the README.md file - name: Replace single file - uses: richardrigutins/replace-in-files@v1 + uses: richardrigutins/replace-in-files@v2 with: files: 'README.md' search-text: '{0}'