From 2d59246b1ee51622f8b44babbd7f3b1e63a4ee1e Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Tue, 14 Oct 2025 20:55:28 -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 31b72a7..46dc8c3 100644 --- a/.github/actions/unit-tests/action.yml +++ b/.github/actions/unit-tests/action.yml @@ -2,9 +2,9 @@ name: Unit Tests description: "Runs 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'