diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 1c4254aa..59944b9f 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -22,7 +22,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: ${{ vars.GO_VERSION }} + go-version: '${{ vars.GO_VERSION }}' - name: Run Makefile run: | @@ -50,7 +50,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: ${{ vars.GO_VERSION }} + go-version: '${{ vars.GO_VERSION }}' - name: Run Makefile run: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d9072425..d6680424 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -56,7 +56,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: ${{ vars.GO_VERSION }} + go-version: '${{ vars.GO_VERSION }}' # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 314c8ebf..2cc2ee98 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: ${{ vars.GO_VERSION }} + go-version: '${{ vars.GO_VERSION }}' - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3