You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/_pr-reusable-go-deps.yml
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,10 @@ on:
7
7
required: false
8
8
type: string
9
9
default: '1.23'
10
+
secrets:
11
+
API_SECRET:
12
+
required: false
13
+
description: "PAT with read access to private utmstack/* Go modules. Without it, `go list -u -m -json all` fails on projects that import private repos."
10
14
11
15
jobs:
12
16
deps:
@@ -19,6 +23,23 @@ jobs:
19
23
with:
20
24
go-version: ${{ inputs.go_version }}
21
25
26
+
# Some projects in this monorepo (e.g. ./installer) depend on private
27
+
# utmstack/* modules. `go list -u -m -json all` tries to clone those
28
+
# over HTTPS and fails without auth — same pattern the deploy pipelines
0 commit comments