Skip to content
Snippets Groups Projects
Unverified Commit 72acc8bd authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix(go): add GOPROXY username/password to global secrets list (#14636)

parent 2a00fcb0
No related branches found
No related tags found
No related merge requests found
import is from '@sindresorhus/is';
import { cache } from '../../../util/cache/package/decorator'; import { cache } from '../../../util/cache/package/decorator';
import { addSecretForSanitizing } from '../../../util/sanitize';
import { parseUrl } from '../../../util/url';
import { BitBucketTagsDatasource } from '../bitbucket-tags'; import { BitBucketTagsDatasource } from '../bitbucket-tags';
import { Datasource } from '../datasource'; import { Datasource } from '../datasource';
import { GithubTagsDatasource } from '../github-tags'; import { GithubTagsDatasource } from '../github-tags';
...@@ -73,3 +76,14 @@ export class GoDatasource extends Datasource { ...@@ -73,3 +76,14 @@ export class GoDatasource extends Datasource {
} }
} }
} }
// istanbul ignore if
if (is.string(process.env.GOPROXY)) {
const uri = parseUrl(process.env.GOPROXY);
if (uri?.username) {
addSecretForSanitizing(uri.username, 'global');
}
if (uri?.password) {
addSecretForSanitizing(uri.password, 'global');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment