From 71866a2ba356a2de27a2815c16a5d29e8bb9edfa Mon Sep 17 00:00:00 2001 From: muraca Date: Tue, 3 Oct 2023 23:43:48 +0200 Subject: [PATCH] release v1.0.0 Signed-off-by: muraca --- Readme.md | 6 +++--- action.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 4777197..784161e 100644 --- a/Readme.md +++ b/Readme.md @@ -27,13 +27,13 @@ toml-sort --check [files] This will only check `./Cargo.toml`: ```yaml -- uses: Off-Narrative-Labs/toml_sort +- uses: Off-Narrative-Labs/toml_sort@v1 ``` If you want the action to check all the TOML files, then you can use: ```yaml -- uses: Off-Narrative-Labs/toml_sort +- uses: Off-Narrative-Labs/toml_sort@v1 with: all: true ``` @@ -41,7 +41,7 @@ If you want the action to check all the TOML files, then you can use: In alternative, if you want to check only a certain set of files: ```yaml -- uses: Off-Narrative-Labs/toml_sort +- uses: Off-Narrative-Labs/toml_sort@v1 with: files: Cargo.toml foo/Cargo.toml bar/Cargo.toml ``` diff --git a/action.yml b/action.yml index 8c54999..2943904 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,7 @@ runs: steps: - name: "Installing TOML Sort" shell: "bash" - run: curl https://github.com/Off-Narrative-Labs/toml_sort/releases/download/v0.1.0/toml-sort-x86_64-unknown-linux-gnu.tar.gz -L | tar -xz + run: curl https://github.com/Off-Narrative-Labs/toml_sort/releases/download/v1.0.0/toml-sort-x86_64-unknown-linux-gnu.tar.gz -L | tar -xz - if: ${{ inputs.all }} name: "Running TOML Sort check on all TOML files starting from current directory" shell: "bash"