mirror of
https://github.com/actions/setup-go.git
synced 2026-02-04 14:38:20 +00:00
Update module cache to use go.mod as key
This commit is contained in:
parent
ae252ee6fb
commit
6e29faab03
9 changed files with 73 additions and 68 deletions
|
|
@ -47,7 +47,7 @@ describe('getPackageManagerInfo', () => {
|
|||
//Arrange
|
||||
const packageManagerName = 'default';
|
||||
const expectedResult = {
|
||||
dependencyFilePattern: 'go.sum',
|
||||
dependencyFilePattern: 'go.mod',
|
||||
cacheFolderCommandList: ['go env GOMODCACHE', 'go env GOCACHE']
|
||||
};
|
||||
|
||||
|
|
@ -73,7 +73,7 @@ describe('getCacheDirectoryPath', () => {
|
|||
const getExecOutputSpy = jest.spyOn(exec, 'getExecOutput');
|
||||
|
||||
const validPackageManager: PackageManagerInfo = {
|
||||
dependencyFilePattern: 'go.sum',
|
||||
dependencyFilePattern: 'go.mod',
|
||||
cacheFolderCommandList: ['go env GOMODCACHE', 'go env GOCACHE']
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue