mirror of
https://github.com/ivuorinen/go-test-sarif.git
synced 2026-02-02 16:44:38 +00:00
23 lines
533 B
YAML
23 lines
533 B
YAML
name: 'Go Test to SARIF Converter'
|
|
description: 'Converts Go test JSON output to SARIF format.'
|
|
|
|
author: 'Ismo Vuorinen'
|
|
branding:
|
|
icon: "check"
|
|
color: "green"
|
|
|
|
inputs:
|
|
input_file:
|
|
description: 'Path to the Go test JSON results file.'
|
|
required: true
|
|
output_file:
|
|
description: 'Path where the SARIF output should be saved.'
|
|
required: true
|
|
|
|
runs:
|
|
using: "docker"
|
|
image: "docker://ivuorinen/go-test-sarif-action:v1"
|
|
with:
|
|
input_file: ${{ inputs.input_file }}
|
|
output_file: ${{ inputs.output_file }}
|