Skip to content

Bump gitlab.com/gitlab-org/api/client-go from 1.3.0 to 1.7.0 #360

Bump gitlab.com/gitlab-org/api/client-go from 1.3.0 to 1.7.0

Bump gitlab.com/gitlab-org/api/client-go from 1.3.0 to 1.7.0 #360

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: 'stable'
check-latest: true
- working-directory: tools
run: go mod tidy -diff
- id: golangci-lint-version
working-directory: tools
run: |
echo "GOLANGCI_LINT_VERSION=$(go list -m -f '{{.Version}}' github.com/golangci/golangci-lint/v2)" >> $GITHUB_OUTPUT
- uses: golangci/golangci-lint-action@v9
with:
version: ${{ steps.golangci-lint-version.outputs.GOLANGCI_LINT_VERSION }}
args: --verbose