From 721392fc5ebe24c1136f713152f88f049842ec85 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Tue, 14 Oct 2025 20:59:09 -0400 Subject: [PATCH] chore: Update go-unit-report from tag to SHA --- .github/actions/unit-tests/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/unit-tests/action.yml b/.github/actions/unit-tests/action.yml index 81e4c20..dd7ed44 100644 --- a/.github/actions/unit-tests/action.yml +++ b/.github/actions/unit-tests/action.yml @@ -2,9 +2,9 @@ name: Unit Tests description: "Runs SDK's unit tests + linters and optionally gathers coverage." inputs: lint: - description: 'Whether to run linters.' + description: "Whether to run linters." required: false - default: 'false' + default: "false" runs: using: composite @@ -25,7 +25,7 @@ runs: if: steps.test.outcome == 'success' id: process-test shell: bash - run: go run github.com/jstemmer/go-junit-report@v0.9.1 < raw_report.txt > junit_report.xml + run: go run github.com/jstemmer/go-junit-report@cc1f095d5cc5eca2844f5c5ea7bb37f6b9bf6cac < raw_report.txt > junit_report.xml - name: Upload test results if: steps.process-test.outcome == 'success'