From 726a1a392140f8c37fe378b610e40e930c139684 Mon Sep 17 00:00:00 2001 From: Carlos Pereira Atencio Date: Fri, 3 Feb 2023 15:10:16 +0000 Subject: [PATCH] Uprev to v1. --- README.md | 6 +++--- dev-instructions.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index aeb7705..115193a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ binaries: https://github.com/google/bloaty/ ```yaml - name: Run Bloaty McBloatface on an ELF file - uses: carlosperate/bloaty-action@v0 + uses: carlosperate/bloaty-action@v1 with: bloaty-args: ``` @@ -76,7 +76,7 @@ to `true`: ```yaml - name: Run Bloaty McBloatface on an ELF file & add output to summary - uses: carlosperate/bloaty-action@v0 + uses: carlosperate/bloaty-action@v1 with: bloaty-args: test-elf-files/example-before.elf -- test-elf-files/example-after.elf output-to-summary: true @@ -87,7 +87,7 @@ to post a comment with the output of a the `carlosperate/bloaty-action` step: ```yaml - name: Run Bloaty McBloatface on an ELF file - uses: carlosperate/bloaty-action@v0 + uses: carlosperate/bloaty-action@v1 id: bloaty-comparison with: bloaty-args: test-elf-files/example-before.elf -- test-elf-files/example-after.elf diff --git a/dev-instructions.md b/dev-instructions.md index f20a7ea..a73b6eb 100644 --- a/dev-instructions.md +++ b/dev-instructions.md @@ -3,8 +3,8 @@ ## Update GitHub Action git tag ``` -git tag -fa v0 -m "Update v0 tag" -git push origin v0 --force +git tag -fa v1 -m "Update v1 tag" +git push origin v1 --force ```