Skip to content

Commit

Permalink
chore(deps): update linters to v7.3.0 (#28005)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rhys Arkins <rhys@arkins.net>
  • Loading branch information
renovate[bot] and rarkins committed Mar 18, 2024
1 parent ebf0c7b commit a442f24
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 67 deletions.
6 changes: 3 additions & 3 deletions lib/modules/datasource/docker/common.ts
Expand Up @@ -32,11 +32,11 @@ import { googleRegex } from './google';
import type { OciHelmConfig } from './schema';
import type { RegistryRepository } from './types';

export const dockerDatasourceId = 'docker' as const;
export const dockerDatasourceId = 'docker';

export const imageUrlLabel = 'org.opencontainers.image.url' as const;
export const imageUrlLabel = 'org.opencontainers.image.url';

export const sourceLabel = 'org.opencontainers.image.source' as const;
export const sourceLabel = 'org.opencontainers.image.source';
export const sourceLabels = [sourceLabel, 'org.label-schema.vcs-url'] as const;

export const gitRefLabel = 'org.opencontainers.image.revision';
Expand Down
2 changes: 1 addition & 1 deletion lib/util/schema-utils.ts
Expand Up @@ -228,7 +228,7 @@ export const UtcDate = z

export const Yaml = z.string().transform((str, ctx): JsonValue => {
try {
return parseSingleYaml(str, { json: true }) as JsonValue;
return parseSingleYaml(str, { json: true });
} catch (e) {
ctx.addIssue({ code: 'custom', message: 'Invalid YAML' });
return z.NEVER;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -306,8 +306,8 @@
"@types/url-join": "4.0.3",
"@types/validate-npm-package-name": "4.0.2",
"@types/xmldoc": "1.1.9",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@typescript-eslint/eslint-plugin": "7.3.0",
"@typescript-eslint/parser": "7.3.0",
"aws-sdk-client-mock": "3.0.1",
"callsite": "1.0.0",
"common-tags": "1.8.2",
Expand Down
122 changes: 61 additions & 61 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a442f24

Please sign in to comment.