Skip to content

Commit 8ba9f1c

Browse files
committed
Update ci go linter and go releaser versions
1 parent 27587c4 commit 8ba9f1c

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ env:
1717
VAULT_ADDR: https://vault.eng.aserto.com/
1818
PRE_RELEASE: ${{ github.ref == 'refs/heads/main' && 'main' || '' }}
1919
GO_VERSION: "1.24"
20-
GO_RELEASER_VERSION: "v2.3.2"
21-
GO_LANGCI_LINT_VERSION: "v1.64.5"
20+
GO_RELEASER_VERSION: "v2.8.2"
21+
GO_LANGCI_LINT_VERSION: "v2.0.2"
2222
GO_TESTSUM_VERSION: "1.11.0"
2323

2424
jobs:
@@ -60,7 +60,7 @@ jobs:
6060
go-version: ${{ env.GO_VERSION }}
6161
-
6262
name: Lint package ${{ matrix.package }}
63-
uses: golangci/golangci-lint-action@v6
63+
uses: golangci/golangci-lint-action@v7
6464
with:
6565
version: ${{ env.GO_LANGCI_LINT_VERSION }}
6666
install-mode: binary

plugins/auth0/pkg/app/fetch.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ func (f *FetchCmd) Run(ctx *cc.CommonCtx) error {
3737
return err
3838
}
3939

40-
fetcher = fetcher.WithUserPID(f.UserPID).WithEmail(f.UserEmail).WithRoles(f.Roles).WithOrgs(f.Orgs).WithSAML(f.SAML)
40+
fetcher = fetcher.
41+
WithUserPID(f.UserPID).
42+
WithEmail(f.UserEmail).
43+
WithRoles(f.Roles).
44+
WithOrgs(f.Orgs).
45+
WithSAML(f.SAML)
4146

4247
return fetcher.Fetch(ctx.Context, os.Stdout, os.Stderr)
4348
}

0 commit comments

Comments
 (0)