From 76ddbc15e27d1ae0c52fb8ebd72da888645b1986 Mon Sep 17 00:00:00 2001 From: bwhitehead0 Date: Thu, 23 May 2024 17:05:42 -0500 Subject: [PATCH 1/2] fixed example to use v1 --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 4012413..1024fdb 100644 --- a/readme.md +++ b/readme.md @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Gather runner diagnostic info - uses: bwhitehead0/runner_info + uses: bwhitehead0/runner_info@v1 with: detail_level: short # optional, full or short, default short - name: Run ShellCheck @@ -45,7 +45,7 @@ region: us-east-1 ```yaml ... - name: Gather runner diagnostic info - uses: bwhitehead0/runner_info + uses: bwhitehead0/runner_info@v1 with: detail_level: full # optional, full or short, default short ... From dd40ce638af68b02a29183bad1e51a22141ab3d7 Mon Sep 17 00:00:00 2001 From: bwhitehead0 Date: Thu, 23 May 2024 17:09:58 -0500 Subject: [PATCH 2/2] fixed documentation and action output --- action.yml | 3 ++- readme.md | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 4313071..e64703d 100644 --- a/action.yml +++ b/action.yml @@ -15,5 +15,6 @@ runs: steps: - name: Gather runner info id: gather-info - run: echo runner_info=${{ github.action_path }}/assets/runner_info.sh >> $GITHUB_OUTPUT + # run: echo runner_info=${{ github.action_path }}/assets/runner_info.sh >> $GITHUB_OUTPUT + run: echo runner_info=${{ github.action_path }}/assets/runner_info.sh shell: bash \ No newline at end of file diff --git a/readme.md b/readme.md index 1024fdb..3edf8f9 100644 --- a/readme.md +++ b/readme.md @@ -23,7 +23,7 @@ jobs: - name: Gather runner diagnostic info uses: bwhitehead0/runner_info@v1 with: - detail_level: short # optional, full or short, default short + detail-level: short # optional, full or short, default short - name: Run ShellCheck uses: bwhitehead0/action-shellcheck@master ``` @@ -47,7 +47,7 @@ region: us-east-1 - name: Gather runner diagnostic info uses: bwhitehead0/runner_info@v1 with: - detail_level: full # optional, full or short, default short + detail-level: full # optional, full or short, default short ... ```