From 542da61215af7120e4cb46d7b35412785a73c2cb Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 9 Feb 2023 21:25:06 -0500 Subject: [PATCH] fix(ci): Use single quotes instead of double quotes --- .github/workflows/benchmark.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 2eb07f9f..a8dda6a3 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -23,8 +23,8 @@ jobs: - uses: actions/setup-go@v3 with: go-version: 1.19 - repository: ${{ github.event.inputs.repository || "TwiN/gatus" }} - ref: ${{ github.event.inputs.ref || "master" }} + repository: "${{ github.event.inputs.repository || 'TwiN/gatus' }}" + ref: "${{ github.event.inputs.ref || 'master' }}" - uses: actions/checkout@v3 - name: Benchmark run: go test -bench=. ./storage/store