diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index cb92f128..7c6fc7d0 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -16,9 +16,9 @@ jobs: runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # ratchet:actions/checkout@v3 - - uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # ratchet:actions/setup-go@v3 + - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe with: - go-version: 1.19 + go-version: '1.20' - name: Verify dependencies run: go mod verify - name: Build diff --git a/internal/clients/gitlab/client.go b/internal/clients/gitlab/client.go index cdd932fd..4f54d5d2 100644 --- a/internal/clients/gitlab/client.go +++ b/internal/clients/gitlab/client.go @@ -156,7 +156,7 @@ func (c *Client) Group(name string) (*gitlab.Group, error) { } for _, g := range res.Collected { - if g.Path == name { + if g.FullPath == name { return g, nil } }