diff --git a/.github/workflows/linter-go.yaml b/.github/workflows/linter-go.yaml index 79878953..8f5fe962 100644 --- a/.github/workflows/linter-go.yaml +++ b/.github/workflows/linter-go.yaml @@ -37,33 +37,3 @@ jobs: VALIDATE_OPENAPI: true VALIDATE_YAML: true GITHUB_TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }} - - golang: - name: Lint Golang files - runs-on: ubuntu-latest - timeout-minutes: 15 - - steps: - - name: Setup go - uses: actions/setup-go@v3 - with: - go-version: "^1.19.0" - - - name: Checkout Code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Configure git for private modules - env: - TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }} - run: git config --global url."https://${TOKEN}:x-oauth-basic@github.com/vimeda".insteadOf "https://github.com/vimeda" - - - name: Linter - uses: golangci/golangci-lint-action@v3 - with: - version: latest - only-new-issues: true - args: -c ./.github/linters/.golangci.yaml - env: - GITHUB_TOKEN: ${{ secrets.GB_TOKEN_PRIVATE }}