Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions __tests__/update-docker-tags.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ describe('action', () => {
}[tag] ?? []
);
},
async getLatestChartVersion() {
return '1.2.3';
},
ociString(): string {
return 'oci://gcr.io/project/repo';
},
};
const newContents = await updateDockerTags(contents, dockerRegistryClient);
expect(newContents).toMatchSnapshot();
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ inputs:

update-docker-tags-for-artifact-registry-repository:
description: 'Process trackMutableTag instructions; must be set to a string of the form `projects/PROJECT/locations/LOCATION/repositories/REPOSITORY`'

update-helm-chart-for-artifact-registry-repository:
description: 'Process helm subchart dependency bumps; must be set to a string of the form `projects/PROJECT/locations/LOCATION/repositories/REPOSITORY`'

update-promoted-values:
description: 'Process promote instructions'
Expand Down
Loading