mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00

Co-authored-by: Sebastian Poxhofer <secustor@users.noreply.github.com> Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Rhys Arkins <rhys@arkins.net>
22 lines
715 B
TypeScript
22 lines
715 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GoDatasource } from '../../datasource/go';
|
|
import { GolangVersionDatasource } from '../../datasource/golang-version';
|
|
import { updateArtifacts } from './artifacts';
|
|
import { extractPackageFile } from './extract';
|
|
import { updateDependency } from './update';
|
|
|
|
export { extractPackageFile, updateDependency, updateArtifacts };
|
|
|
|
export const displayName = 'Go Modules';
|
|
export const url = 'https://go.dev/ref/mod';
|
|
export const categories: Category[] = ['golang'];
|
|
|
|
export const defaultConfig = {
|
|
managerFilePatterns: ['/(^|/)go\\.mod$/'],
|
|
pinDigests: false,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
GoDatasource.id,
|
|
GolangVersionDatasource.id,
|
|
];
|