diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index dd1103b..7b0fbb0 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -17,9 +17,8 @@ jobs: go-version: 1.25 - name: Install helm run: | - command -v helm || { - curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash - } + command -v helm || curl -sSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash + - name: Tidy run: | export GOPROXY='https://proxy.golang.org,direct' @@ -28,7 +27,7 @@ jobs: run: | go vet ./... go test -coverprofile=coverprofile.out -json -v ./... > gotest.json - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: tests-results path: |