mirror of
https://github.com/docker/metadata-action.git
synced 2026-03-07 16:53:06 +08:00
Compare commits
1 Commits
c255c9c200
...
e7819bbe91
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e7819bbe91 |
@ -1,4 +1,5 @@
|
|||||||
import {beforeEach, describe, expect, test, it, vi} from 'vitest';
|
import {beforeEach, describe, expect, test, it, vi} from 'vitest';
|
||||||
|
import {Context} from '@actions/github/lib/context.js';
|
||||||
import {Git} from '@docker/actions-toolkit/lib/git.js';
|
import {Git} from '@docker/actions-toolkit/lib/git.js';
|
||||||
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit.js';
|
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit.js';
|
||||||
|
|
||||||
@ -97,11 +98,11 @@ describe('getContext', () => {
|
|||||||
expect(ctx.commitDate).toEqual(new Date('2024-11-13T13:42:28.000Z'));
|
expect(ctx.commitDate).toEqual(new Date('2024-11-13T13:42:28.000Z'));
|
||||||
});
|
});
|
||||||
it('git', async () => {
|
it('git', async () => {
|
||||||
vi.spyOn(Git, 'context').mockImplementation((): Promise<context.Context> => {
|
vi.spyOn(Git, 'context').mockImplementation((): Promise<Context> => {
|
||||||
return Promise.resolve({
|
return Promise.resolve({
|
||||||
ref: 'refs/heads/git-test',
|
ref: 'refs/heads/git-test',
|
||||||
sha: 'git-test-sha'
|
sha: 'git-test-sha'
|
||||||
} as context.Context);
|
} as Context);
|
||||||
});
|
});
|
||||||
vi.spyOn(Git, 'commitDate').mockImplementation(async (): Promise<Date> => {
|
vi.spyOn(Git, 'commitDate').mockImplementation(async (): Promise<Date> => {
|
||||||
return new Date('2023-01-01T13:42:28.000Z');
|
return new Date('2023-01-01T13:42:28.000Z');
|
||||||
|
|||||||
@ -3,12 +3,12 @@ import * as fs from 'fs';
|
|||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as dotenv from 'dotenv';
|
import * as dotenv from 'dotenv';
|
||||||
|
|
||||||
import {GitHub} from '@docker/actions-toolkit/lib/github/github.js';
|
import {Context} from '@actions/github/lib/context.js';
|
||||||
|
import {GitHub} from '@docker/actions-toolkit/lib/github.js';
|
||||||
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit.js';
|
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit.js';
|
||||||
import {GitHubRepo} from '@docker/actions-toolkit/lib/types/github/github.js';
|
import {GitHubRepo} from '@docker/actions-toolkit/lib/types/github.js';
|
||||||
|
|
||||||
import {ContextSource, getContext, getInputs, Inputs} from '../src/context.js';
|
import {ContextSource, getContext, getInputs, Inputs} from '../src/context.js';
|
||||||
import type {Context as MetadataContext} from '../src/context.js';
|
|
||||||
import {Meta, Version} from '../src/meta.js';
|
import {Meta, Version} from '../src/meta.js';
|
||||||
|
|
||||||
import repoFixture from './fixtures/repo.json' with {type: 'json'};
|
import repoFixture from './fixtures/repo.json' with {type: 'json'};
|
||||||
@ -38,28 +38,16 @@ beforeEach(() => {
|
|||||||
delete process.env[key];
|
delete process.env[key];
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
vi.spyOn(GitHub, 'context', 'get').mockImplementation((): MetadataContext => {
|
|
||||||
const repository = process.env.GITHUB_REPOSITORY || 'docker/repo';
|
vi.spyOn(GitHub, 'context', 'get').mockImplementation((): Context => {
|
||||||
const [owner, repo] = repository.includes('/') ? repository.split('/', 2) : ['docker', 'repo'];
|
//@ts-expect-error partial info
|
||||||
const eventPath = process.env.GITHUB_EVENT_PATH;
|
|
||||||
const payload = eventPath && fs.existsSync(eventPath) ? JSON.parse(fs.readFileSync(eventPath, 'utf8')) : {};
|
|
||||||
return {
|
return {
|
||||||
payload,
|
...new Context(),
|
||||||
eventName: process.env.GITHUB_EVENT_NAME || '',
|
repo: {
|
||||||
sha: process.env.GITHUB_SHA || '',
|
owner: 'docker',
|
||||||
ref: process.env.GITHUB_REF || '',
|
repo: 'repo'
|
||||||
workflow: process.env.GITHUB_WORKFLOW || '',
|
}
|
||||||
action: process.env.GITHUB_ACTION || '',
|
};
|
||||||
actor: process.env.GITHUB_ACTOR || '',
|
|
||||||
job: process.env.GITHUB_JOB || '',
|
|
||||||
runAttempt: +(process.env.GITHUB_RUN_ATTEMPT || 1),
|
|
||||||
runNumber: +(process.env.GITHUB_RUN_NUMBER || 0),
|
|
||||||
runId: +(process.env.GITHUB_RUN_ID || 0),
|
|
||||||
apiUrl: process.env.GITHUB_API_URL || 'https://api.github.com',
|
|
||||||
serverUrl: process.env.GITHUB_SERVER_URL || 'https://github.com',
|
|
||||||
graphqlUrl: process.env.GITHUB_GRAPHQL_URL || 'https://api.github.com/graphql',
|
|
||||||
repo: {owner, repo}
|
|
||||||
} as MetadataContext;
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,32 @@
|
|||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
|
import {createRequire} from 'node:module';
|
||||||
import os from 'node:os';
|
import os from 'node:os';
|
||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
import {vi} from 'vitest';
|
import {vi} from 'vitest';
|
||||||
|
|
||||||
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'docker-metadata-action-'));
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'docker-metadata-action-'));
|
||||||
|
|
||||||
const githubPayload = {
|
process.env = Object.assign({}, process.env, {
|
||||||
|
TEMP: tmpDir,
|
||||||
|
GITHUB_REPOSITORY: 'docker/metadata-action',
|
||||||
|
RUNNER_TEMP: path.join(tmpDir, 'runner-temp'),
|
||||||
|
RUNNER_TOOL_CACHE: path.join(tmpDir, 'runner-tool-cache')
|
||||||
|
});
|
||||||
|
|
||||||
|
const require = createRequire(import.meta.url);
|
||||||
|
type RequireCacheEntry = NonNullable<(typeof require.cache)[string]>;
|
||||||
|
|
||||||
|
const githubMock = {
|
||||||
|
context: {
|
||||||
|
repo: {
|
||||||
|
owner: 'docker',
|
||||||
|
repo: 'actions-toolkit'
|
||||||
|
},
|
||||||
|
ref: 'refs/heads/dev',
|
||||||
|
sha: '5f3331d7f7044c18ca9f12c77d961c4d7cf3276a',
|
||||||
|
runId: 2188748038,
|
||||||
|
runNumber: 15,
|
||||||
|
payload: {
|
||||||
after: '860c1904a1ce19322e91ac35af1ab07466440c37',
|
after: '860c1904a1ce19322e91ac35af1ab07466440c37',
|
||||||
base_ref: null,
|
base_ref: null,
|
||||||
before: '5f3331d7f7044c18ca9f12c77d961c4d7cf3276a',
|
before: '5f3331d7f7044c18ca9f12c77d961c4d7cf3276a',
|
||||||
@ -22,11 +43,11 @@ const githubPayload = {
|
|||||||
username: 'crazy-max'
|
username: 'crazy-max'
|
||||||
},
|
},
|
||||||
distinct: true,
|
distinct: true,
|
||||||
id: '5f3331d7f7044c18ca9f12c77d961c4d7cf3276a',
|
id: '860c1904a1ce19322e91ac35af1ab07466440c37',
|
||||||
message: 'hello dev',
|
message: 'hello dev',
|
||||||
timestamp: '2024-11-13T13:42:28Z',
|
timestamp: '2022-04-19T11:27:24+02:00',
|
||||||
tree_id: 'd2c60af597e863787d2d27f569e30495b0b92820',
|
tree_id: 'd2c60af597e863787d2d27f569e30495b0b92820',
|
||||||
url: 'https://github.com/docker/test-docker-action/commit/5f3331d7f7044c18ca9f12c77d961c4d7cf3276a'
|
url: 'https://github.com/docker/test-docker-action/commit/860c1904a1ce19322e91ac35af1ab07466440c37'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
compare: 'https://github.com/docker/test-docker-action/compare/5f3331d7f704...860c1904a1ce',
|
compare: 'https://github.com/docker/test-docker-action/compare/5f3331d7f704...860c1904a1ce',
|
||||||
@ -45,11 +66,11 @@ const githubPayload = {
|
|||||||
username: 'crazy-max'
|
username: 'crazy-max'
|
||||||
},
|
},
|
||||||
distinct: true,
|
distinct: true,
|
||||||
id: '5f3331d7f7044c18ca9f12c77d961c4d7cf3276a',
|
id: '860c1904a1ce19322e91ac35af1ab07466440c37',
|
||||||
message: 'hello dev',
|
message: 'hello dev',
|
||||||
timestamp: '2024-11-13T13:42:28Z',
|
timestamp: '2022-04-19T11:27:24+02:00',
|
||||||
tree_id: 'd2c60af597e863787d2d27f569e30495b0b92820',
|
tree_id: 'd2c60af597e863787d2d27f569e30495b0b92820',
|
||||||
url: 'https://github.com/docker/test-docker-action/commit/5f3331d7f7044c18ca9f12c77d961c4d7cf3276a'
|
url: 'https://github.com/docker/test-docker-action/commit/860c1904a1ce19322e91ac35af1ab07466440c37'
|
||||||
},
|
},
|
||||||
organization: {
|
organization: {
|
||||||
avatar_url: 'https://avatars.githubusercontent.com/u/5429470?v=4',
|
avatar_url: 'https://avatars.githubusercontent.com/u/5429470?v=4',
|
||||||
@ -199,26 +220,12 @@ const githubPayload = {
|
|||||||
type: 'User',
|
type: 'User',
|
||||||
url: 'https://api.github.com/users/crazy-max'
|
url: 'https://api.github.com/users/crazy-max'
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
},
|
||||||
const githubEventPath = path.join(tmpDir, 'github-event.json');
|
getOctokit: () => ({
|
||||||
fs.writeFileSync(githubEventPath, JSON.stringify(githubPayload));
|
rest: {
|
||||||
|
repos: {
|
||||||
process.env = Object.assign({}, process.env, {
|
getCommit: async () => ({
|
||||||
TEMP: tmpDir,
|
|
||||||
GITHUB_REPOSITORY: 'docker/metadata-action',
|
|
||||||
GITHUB_REF: 'refs/heads/dev',
|
|
||||||
GITHUB_RUN_ID: '2188748038',
|
|
||||||
GITHUB_RUN_ATTEMPT: '1',
|
|
||||||
GITHUB_RUN_NUMBER: '15',
|
|
||||||
GITHUB_SHA: '5f3331d7f7044c18ca9f12c77d961c4d7cf3276a',
|
|
||||||
GITHUB_EVENT_PATH: githubEventPath,
|
|
||||||
RUNNER_TEMP: path.join(tmpDir, 'runner-temp'),
|
|
||||||
RUNNER_TOOL_CACHE: path.join(tmpDir, 'runner-tool-cache')
|
|
||||||
});
|
|
||||||
|
|
||||||
const getCommitMock = vi.hoisted(() =>
|
|
||||||
vi.fn(async () => ({
|
|
||||||
data: {
|
data: {
|
||||||
commit: {
|
commit: {
|
||||||
committer: {
|
committer: {
|
||||||
@ -226,27 +233,27 @@ const getCommitMock = vi.hoisted(() =>
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}))
|
})
|
||||||
);
|
|
||||||
|
|
||||||
const getOctokitMock = vi.hoisted(() =>
|
|
||||||
vi.fn(() => ({
|
|
||||||
rest: {
|
|
||||||
repos: {
|
|
||||||
getCommit: getCommitMock
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}))
|
})
|
||||||
);
|
};
|
||||||
|
|
||||||
vi.mock('@actions/github', async importOriginal => {
|
vi.mock('@actions/github', () => githubMock);
|
||||||
const actual = await importOriginal<typeof import('@actions/github')>();
|
|
||||||
return {
|
for (const mod of ['@actions/github', '@docker/actions-toolkit/node_modules/@actions/github']) {
|
||||||
...actual,
|
try {
|
||||||
context: {
|
const resolved = require.resolve(mod);
|
||||||
...actual.context,
|
vi.doMock(resolved, () => githubMock);
|
||||||
payload: githubPayload
|
require.cache[resolved] = {
|
||||||
},
|
id: resolved,
|
||||||
getOctokit: getOctokitMock
|
filename: resolved,
|
||||||
};
|
loaded: true,
|
||||||
});
|
exports: githubMock,
|
||||||
|
children: [],
|
||||||
|
paths: []
|
||||||
|
} as RequireCacheEntry;
|
||||||
|
} catch {
|
||||||
|
// Ignore unresolved optional paths; vi.mock handles module-level mocking.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
141
dist/index.js
generated
vendored
141
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@ -25,14 +25,14 @@
|
|||||||
"packageManager": "yarn@4.9.2",
|
"packageManager": "yarn@4.9.2",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^3.0.0",
|
"@actions/core": "^3.0.0",
|
||||||
"@actions/github": "^9.0.0",
|
"@actions/github": "^6.0.1",
|
||||||
"@docker/actions-toolkit": "^0.77.0",
|
"@docker/actions-toolkit": "^0.77.0",
|
||||||
"@renovate/pep440": "^1.0.0",
|
"@renovate/pep440": "^1.0.0",
|
||||||
"csv-parse": "^6.1.0",
|
"csv-parse": "^6.1.0",
|
||||||
"handlebars": "^4.7.8",
|
"handlebars": "^4.7.8",
|
||||||
"moment": "^2.30.1",
|
"moment": "^2.30.1",
|
||||||
"moment-timezone": "^0.6.0",
|
"moment-timezone": "^0.6.0",
|
||||||
"semver": "^7.7.4"
|
"semver": "^7.7.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.39.3",
|
"@eslint/js": "^9.39.3",
|
||||||
|
|||||||
@ -1,12 +1,11 @@
|
|||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
|
|
||||||
|
import {Context as GithubContext} from '@actions/github/lib/context.js';
|
||||||
import {Util} from '@docker/actions-toolkit/lib/util.js';
|
import {Util} from '@docker/actions-toolkit/lib/util.js';
|
||||||
import {Git} from '@docker/actions-toolkit/lib/git.js';
|
import {Git} from '@docker/actions-toolkit/lib/git.js';
|
||||||
import {GitHub} from '@docker/actions-toolkit/lib/github/github.js';
|
import {GitHub} from '@docker/actions-toolkit/lib/github.js';
|
||||||
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit.js';
|
import {Toolkit} from '@docker/actions-toolkit/lib/toolkit.js';
|
||||||
|
|
||||||
type GithubContext = typeof GitHub.context;
|
|
||||||
|
|
||||||
export interface Context extends GithubContext {
|
export interface Context extends GithubContext {
|
||||||
commitDate: Date;
|
commitDate: Date;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,7 @@ import * as pep440 from '@renovate/pep440';
|
|||||||
import * as semver from 'semver';
|
import * as semver from 'semver';
|
||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
import {Context as ToolkitContext} from '@docker/actions-toolkit/lib/context.js';
|
import {Context as ToolkitContext} from '@docker/actions-toolkit/lib/context.js';
|
||||||
import {GitHubRepo} from '@docker/actions-toolkit/lib/types/github/github.js';
|
import {GitHubRepo} from '@docker/actions-toolkit/lib/types/github.js';
|
||||||
|
|
||||||
import {Inputs, Context} from './context.js';
|
import {Inputs, Context} from './context.js';
|
||||||
import * as icl from './image.js';
|
import * as icl from './image.js';
|
||||||
|
|||||||
253
yarn.lock
253
yarn.lock
@ -70,6 +70,21 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@actions/github@npm:^6.0.1":
|
||||||
|
version: 6.0.1
|
||||||
|
resolution: "@actions/github@npm:6.0.1"
|
||||||
|
dependencies:
|
||||||
|
"@actions/http-client": "npm:^2.2.0"
|
||||||
|
"@octokit/core": "npm:^5.0.1"
|
||||||
|
"@octokit/plugin-paginate-rest": "npm:^9.2.2"
|
||||||
|
"@octokit/plugin-rest-endpoint-methods": "npm:^10.4.0"
|
||||||
|
"@octokit/request": "npm:^8.4.1"
|
||||||
|
"@octokit/request-error": "npm:^5.1.1"
|
||||||
|
undici: "npm:^5.28.5"
|
||||||
|
checksum: 10/ba6a162a5727dea2f3f3fc450e02c5b336ceb65a0e26ba9ad9c62b20f4f5b2625ca347a9311a4905ef3c92378ca022caba841a283cb7f2e4175d79e3d1ecaf12
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@actions/github@npm:^9.0.0":
|
"@actions/github@npm:^9.0.0":
|
||||||
version: 9.0.0
|
version: 9.0.0
|
||||||
resolution: "@actions/github@npm:9.0.0"
|
resolution: "@actions/github@npm:9.0.0"
|
||||||
@ -95,6 +110,16 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@actions/http-client@npm:^2.2.0":
|
||||||
|
version: 2.2.1
|
||||||
|
resolution: "@actions/http-client@npm:2.2.1"
|
||||||
|
dependencies:
|
||||||
|
tunnel: "npm:^0.0.6"
|
||||||
|
undici: "npm:^5.25.4"
|
||||||
|
checksum: 10/b7338f13461eeca945acc9ccdd20a46e545624dc872bc12869eca7d9a58536ee3e1ecc0d1a1d4c16e8610c2b783e7108e12148b6db5d7fb8bf8b950b8a002d66
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@actions/http-client@npm:^3.0.2":
|
"@actions/http-client@npm:^3.0.2":
|
||||||
version: 3.0.2
|
version: 3.0.2
|
||||||
resolution: "@actions/http-client@npm:3.0.2"
|
resolution: "@actions/http-client@npm:3.0.2"
|
||||||
@ -676,6 +701,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@fastify/busboy@npm:^2.0.0":
|
||||||
|
version: 2.0.0
|
||||||
|
resolution: "@fastify/busboy@npm:2.0.0"
|
||||||
|
checksum: 10/6a2366d06b82aac1069b8323792f76f7a8fca02533cb3745fcd218d8f0f953dc4dbef057287237414658cd43f8dede0846ef33398999e3dbe54ddaeefec71c0a
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@gar/promise-retry@npm:^1.0.0":
|
"@gar/promise-retry@npm:^1.0.0":
|
||||||
version: 1.0.2
|
version: 1.0.2
|
||||||
resolution: "@gar/promise-retry@npm:1.0.2"
|
resolution: "@gar/promise-retry@npm:1.0.2"
|
||||||
@ -821,6 +853,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/auth-token@npm:^4.0.0":
|
||||||
|
version: 4.0.0
|
||||||
|
resolution: "@octokit/auth-token@npm:4.0.0"
|
||||||
|
checksum: 10/60e42701e341d700f73c518c7a35675d36d79fa9d5e838cc3ade96d147e49f5ba74db2e07b2337c2b95aaa540aa42088116df2122daa25633f9e70a2c8785c44
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/auth-token@npm:^6.0.0":
|
"@octokit/auth-token@npm:^6.0.0":
|
||||||
version: 6.0.0
|
version: 6.0.0
|
||||||
resolution: "@octokit/auth-token@npm:6.0.0"
|
resolution: "@octokit/auth-token@npm:6.0.0"
|
||||||
@ -828,6 +867,21 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/core@npm:^5.0.1":
|
||||||
|
version: 5.1.0
|
||||||
|
resolution: "@octokit/core@npm:5.1.0"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/auth-token": "npm:^4.0.0"
|
||||||
|
"@octokit/graphql": "npm:^7.0.0"
|
||||||
|
"@octokit/request": "npm:^8.0.2"
|
||||||
|
"@octokit/request-error": "npm:^5.0.0"
|
||||||
|
"@octokit/types": "npm:^12.0.0"
|
||||||
|
before-after-hook: "npm:^2.2.0"
|
||||||
|
universal-user-agent: "npm:^6.0.0"
|
||||||
|
checksum: 10/8062e86a3088f24a691b36d2c3e9f33e864cefcb5f544b0633650358bce280708b111551cbe855ecf6a5190d6fc4fec1220117c329a2c27525940dd97b868614
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/core@npm:^7.0.6":
|
"@octokit/core@npm:^7.0.6":
|
||||||
version: 7.0.6
|
version: 7.0.6
|
||||||
resolution: "@octokit/core@npm:7.0.6"
|
resolution: "@octokit/core@npm:7.0.6"
|
||||||
@ -853,6 +907,38 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/endpoint@npm:^9.0.0":
|
||||||
|
version: 9.0.1
|
||||||
|
resolution: "@octokit/endpoint@npm:9.0.1"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/types": "npm:^12.0.0"
|
||||||
|
is-plain-object: "npm:^5.0.0"
|
||||||
|
universal-user-agent: "npm:^6.0.0"
|
||||||
|
checksum: 10/8d1e6540cab8686afd977d0a256528b748aba0910530c903c032676c701073f5b90786b8ba74b573f2dc5de41befdb59d3ddb83b1d22e5ab54fb32b3d0abb6c5
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/endpoint@npm:^9.0.6":
|
||||||
|
version: 9.0.6
|
||||||
|
resolution: "@octokit/endpoint@npm:9.0.6"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/types": "npm:^13.1.0"
|
||||||
|
universal-user-agent: "npm:^6.0.0"
|
||||||
|
checksum: 10/2bf776423365ee926bf3f722a664e52f1070758eff4a176279fb132103fd0c76e3541f83ace49bbad9a64f9c9b8de453be565ca8d6136989e9514dea65380ecf
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/graphql@npm:^7.0.0":
|
||||||
|
version: 7.0.2
|
||||||
|
resolution: "@octokit/graphql@npm:7.0.2"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/request": "npm:^8.0.1"
|
||||||
|
"@octokit/types": "npm:^12.0.0"
|
||||||
|
universal-user-agent: "npm:^6.0.0"
|
||||||
|
checksum: 10/f5dcc51fed5304f65dab83fcea4c2a569107d3b71e8d084199dc44f0d0cfc852c9e1f341b06ae66601f9da4af3aad416b0c62dcd0567ac7568f072d8d90d502e
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/graphql@npm:^9.0.3":
|
"@octokit/graphql@npm:^9.0.3":
|
||||||
version: 9.0.3
|
version: 9.0.3
|
||||||
resolution: "@octokit/graphql@npm:9.0.3"
|
resolution: "@octokit/graphql@npm:9.0.3"
|
||||||
@ -864,6 +950,27 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/openapi-types@npm:^19.0.0":
|
||||||
|
version: 19.0.0
|
||||||
|
resolution: "@octokit/openapi-types@npm:19.0.0"
|
||||||
|
checksum: 10/87962fee2e9981d3e81c6786a6c0663095cde1cf7e5ef7d3fa5f6fa89f9b625f70cdf99d3dedcb0755b66926c3521a9e4c8ac9ece4fcf29a04820adba7325099
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/openapi-types@npm:^20.0.0":
|
||||||
|
version: 20.0.0
|
||||||
|
resolution: "@octokit/openapi-types@npm:20.0.0"
|
||||||
|
checksum: 10/9f60572af1201dd92626c412253d83d986b8ab1956250b95f417013ee8e7baf25870eeb801d16672cabc2c420544bc9c2f0a979e07603ff5997eff038c71a8c3
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/openapi-types@npm:^24.2.0":
|
||||||
|
version: 24.2.0
|
||||||
|
resolution: "@octokit/openapi-types@npm:24.2.0"
|
||||||
|
checksum: 10/000897ebc6e247c2591049d6081e95eb5636f73798dadd695ee6048496772b58065df88823e74a760201828545a7ac601dd3c1bcd2e00079a62a9ee9d389409c
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/openapi-types@npm:^27.0.0":
|
"@octokit/openapi-types@npm:^27.0.0":
|
||||||
version: 27.0.0
|
version: 27.0.0
|
||||||
resolution: "@octokit/openapi-types@npm:27.0.0"
|
resolution: "@octokit/openapi-types@npm:27.0.0"
|
||||||
@ -882,6 +989,17 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/plugin-paginate-rest@npm:^9.2.2":
|
||||||
|
version: 9.2.2
|
||||||
|
resolution: "@octokit/plugin-paginate-rest@npm:9.2.2"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/types": "npm:^12.6.0"
|
||||||
|
peerDependencies:
|
||||||
|
"@octokit/core": 5
|
||||||
|
checksum: 10/9afdd61d24a276ed7c2a8e436f735066d1b71601177deb97afa204a1f224257ca9c02681bc94dcda921d37c288a342124f7dfdd88393817306fe0b1ad1f0690f
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/plugin-request-log@npm:^6.0.0":
|
"@octokit/plugin-request-log@npm:^6.0.0":
|
||||||
version: 6.0.0
|
version: 6.0.0
|
||||||
resolution: "@octokit/plugin-request-log@npm:6.0.0"
|
resolution: "@octokit/plugin-request-log@npm:6.0.0"
|
||||||
@ -891,6 +1009,17 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/plugin-rest-endpoint-methods@npm:^10.4.0":
|
||||||
|
version: 10.4.0
|
||||||
|
resolution: "@octokit/plugin-rest-endpoint-methods@npm:10.4.0"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/types": "npm:^12.6.0"
|
||||||
|
peerDependencies:
|
||||||
|
"@octokit/core": ">=5"
|
||||||
|
checksum: 10/2b4de869fd9ef0b443ff26ed76d4ba8a5c0b0b097a3bca0672d9d5efc9026d936736b14b608a3b1a5f9cb264e52b08d9721d5ab4c79640cdaafdc5387b97e03c
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/plugin-rest-endpoint-methods@npm:^17.0.0":
|
"@octokit/plugin-rest-endpoint-methods@npm:^17.0.0":
|
||||||
version: 17.0.0
|
version: 17.0.0
|
||||||
resolution: "@octokit/plugin-rest-endpoint-methods@npm:17.0.0"
|
resolution: "@octokit/plugin-rest-endpoint-methods@npm:17.0.0"
|
||||||
@ -915,6 +1044,28 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/request-error@npm:^5.0.0":
|
||||||
|
version: 5.0.1
|
||||||
|
resolution: "@octokit/request-error@npm:5.0.1"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/types": "npm:^12.0.0"
|
||||||
|
deprecation: "npm:^2.0.0"
|
||||||
|
once: "npm:^1.4.0"
|
||||||
|
checksum: 10/a21a4614c46cb173e4ba73fa048576204f1ddc541dee3e7c938ef36088566e3b25e04ca1f96f375ec2e3cc29b7ba970b3b078a89a20bc50cdcdbed879db94573
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/request-error@npm:^5.1.1":
|
||||||
|
version: 5.1.1
|
||||||
|
resolution: "@octokit/request-error@npm:5.1.1"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/types": "npm:^13.1.0"
|
||||||
|
deprecation: "npm:^2.0.0"
|
||||||
|
once: "npm:^1.4.0"
|
||||||
|
checksum: 10/6ad98626407ba57bb33fa197611be74bee1dd9abc8d5d845648d6a2a04aa6840c0eb7f4be341d55dfcab5bc19181ad5fd25194869a7aaac6245f74b3a14d9662
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/request-error@npm:^7.0.2, @octokit/request-error@npm:^7.1.0":
|
"@octokit/request-error@npm:^7.0.2, @octokit/request-error@npm:^7.1.0":
|
||||||
version: 7.1.0
|
version: 7.1.0
|
||||||
resolution: "@octokit/request-error@npm:7.1.0"
|
resolution: "@octokit/request-error@npm:7.1.0"
|
||||||
@ -938,6 +1089,58 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/request@npm:^8.0.1, @octokit/request@npm:^8.0.2":
|
||||||
|
version: 8.1.4
|
||||||
|
resolution: "@octokit/request@npm:8.1.4"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/endpoint": "npm:^9.0.0"
|
||||||
|
"@octokit/request-error": "npm:^5.0.0"
|
||||||
|
"@octokit/types": "npm:^12.0.0"
|
||||||
|
is-plain-object: "npm:^5.0.0"
|
||||||
|
universal-user-agent: "npm:^6.0.0"
|
||||||
|
checksum: 10/a51470f47009b078a29e80be62e522083a82a0eae0e0a1f2fd85e220b84274d6c44f3c43d594fc29d5901b0597873dc95222d38c8697574314bd0dfcad9915f6
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/request@npm:^8.4.1":
|
||||||
|
version: 8.4.1
|
||||||
|
resolution: "@octokit/request@npm:8.4.1"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/endpoint": "npm:^9.0.6"
|
||||||
|
"@octokit/request-error": "npm:^5.1.1"
|
||||||
|
"@octokit/types": "npm:^13.1.0"
|
||||||
|
universal-user-agent: "npm:^6.0.0"
|
||||||
|
checksum: 10/2b2c9131cc9b608baeeef8ce2943768cc9db5fbe36a665f734a099bd921561c760e4391fbdf39d5aefb725db26742db1488c65624940ef7cec522e10863caa5e
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/types@npm:^12.0.0":
|
||||||
|
version: 12.0.0
|
||||||
|
resolution: "@octokit/types@npm:12.0.0"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/openapi-types": "npm:^19.0.0"
|
||||||
|
checksum: 10/68faa94efaa132d96a4f0d68a82f74c0d6cda2bb644007d9fa5c6d3a5a724981dd72e82ce0d7631df1b04502c470fce311b39becb170e03382521a31ad2aecfa
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/types@npm:^12.6.0":
|
||||||
|
version: 12.6.0
|
||||||
|
resolution: "@octokit/types@npm:12.6.0"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/openapi-types": "npm:^20.0.0"
|
||||||
|
checksum: 10/19b77a8d25af2a5df4561f8750f807edfc9fca5b07cfa9fb21dce4665e1b188c966688f5ed5e08089404428100dfe44ad353f8d8532f1d30fe47e61c5faa1440
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"@octokit/types@npm:^13.1.0":
|
||||||
|
version: 13.10.0
|
||||||
|
resolution: "@octokit/types@npm:13.10.0"
|
||||||
|
dependencies:
|
||||||
|
"@octokit/openapi-types": "npm:^24.2.0"
|
||||||
|
checksum: 10/32f8f5010d7faae128b0cdd0c221f0ca8c3781fe44483ecd87162b3da507db667f7369acda81340f6e2c9c374d9a938803409c6085c2c01d98210b6c58efb99a
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@octokit/types@npm:^16.0.0":
|
"@octokit/types@npm:^16.0.0":
|
||||||
version: 16.0.0
|
version: 16.0.0
|
||||||
resolution: "@octokit/types@npm:16.0.0"
|
resolution: "@octokit/types@npm:16.0.0"
|
||||||
@ -1829,6 +2032,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"before-after-hook@npm:^2.2.0":
|
||||||
|
version: 2.2.1
|
||||||
|
resolution: "before-after-hook@npm:2.2.1"
|
||||||
|
checksum: 10/3a05a6392647286aae05cd583e3cccd8a98f2d3284429cb251e4b86ea2dbd52e6db17d7f4f64e8b7a60b418cd48fd62729771b91a447f39143cb858de2d241b1
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"before-after-hook@npm:^4.0.0":
|
"before-after-hook@npm:^4.0.0":
|
||||||
version: 4.0.0
|
version: 4.0.0
|
||||||
resolution: "before-after-hook@npm:4.0.0"
|
resolution: "before-after-hook@npm:4.0.0"
|
||||||
@ -2136,12 +2346,19 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"deprecation@npm:^2.0.0":
|
||||||
|
version: 2.3.1
|
||||||
|
resolution: "deprecation@npm:2.3.1"
|
||||||
|
checksum: 10/f56a05e182c2c195071385455956b0c4106fe14e36245b00c689ceef8e8ab639235176a96977ba7c74afb173317fac2e0ec6ec7a1c6d1e6eaa401c586c714132
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"docker-metadata-action@workspace:.":
|
"docker-metadata-action@workspace:.":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "docker-metadata-action@workspace:."
|
resolution: "docker-metadata-action@workspace:."
|
||||||
dependencies:
|
dependencies:
|
||||||
"@actions/core": "npm:^3.0.0"
|
"@actions/core": "npm:^3.0.0"
|
||||||
"@actions/github": "npm:^9.0.0"
|
"@actions/github": "npm:^6.0.1"
|
||||||
"@docker/actions-toolkit": "npm:^0.77.0"
|
"@docker/actions-toolkit": "npm:^0.77.0"
|
||||||
"@eslint/js": "npm:^9.39.3"
|
"@eslint/js": "npm:^9.39.3"
|
||||||
"@renovate/pep440": "npm:^1.0.0"
|
"@renovate/pep440": "npm:^1.0.0"
|
||||||
@ -2162,7 +2379,7 @@ __metadata:
|
|||||||
moment: "npm:^2.30.1"
|
moment: "npm:^2.30.1"
|
||||||
moment-timezone: "npm:^0.6.0"
|
moment-timezone: "npm:^0.6.0"
|
||||||
prettier: "npm:^3.8.1"
|
prettier: "npm:^3.8.1"
|
||||||
semver: "npm:^7.7.4"
|
semver: "npm:^7.7.3"
|
||||||
typescript: "npm:^5.9.3"
|
typescript: "npm:^5.9.3"
|
||||||
vitest: "npm:^4.0.18"
|
vitest: "npm:^4.0.18"
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
@ -3001,6 +3218,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"is-plain-object@npm:^5.0.0":
|
||||||
|
version: 5.0.0
|
||||||
|
resolution: "is-plain-object@npm:5.0.0"
|
||||||
|
checksum: 10/e32d27061eef62c0847d303125440a38660517e586f2f3db7c9d179ae5b6674ab0f469d519b2e25c147a1a3bc87156d0d5f4d8821e0ce4a9ee7fe1fcf11ce45c
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"is-stream@npm:^2.0.1":
|
"is-stream@npm:^2.0.1":
|
||||||
version: 2.0.1
|
version: 2.0.1
|
||||||
resolution: "is-stream@npm:2.0.1"
|
resolution: "is-stream@npm:2.0.1"
|
||||||
@ -4528,6 +4752,24 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"undici@npm:^5.25.4":
|
||||||
|
version: 5.28.4
|
||||||
|
resolution: "undici@npm:5.28.4"
|
||||||
|
dependencies:
|
||||||
|
"@fastify/busboy": "npm:^2.0.0"
|
||||||
|
checksum: 10/a666a9f5ac4270c659fafc33d78b6b5039a0adbae3e28f934774c85dcc66ea91da907896f12b414bd6f578508b44d5dc206fa636afa0e49a4e1c9e99831ff065
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
|
"undici@npm:^5.28.5":
|
||||||
|
version: 5.29.0
|
||||||
|
resolution: "undici@npm:5.29.0"
|
||||||
|
dependencies:
|
||||||
|
"@fastify/busboy": "npm:^2.0.0"
|
||||||
|
checksum: 10/0ceca8924a32acdcc0cfb8dd2d368c217840970aa3f5e314fc169608474be6341c5b8e50cad7bd257dbe3b4e432bc5d0a0d000f83644b54fa11a48735ec52b93
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"undici@npm:^6.23.0":
|
"undici@npm:^6.23.0":
|
||||||
version: 6.23.0
|
version: 6.23.0
|
||||||
resolution: "undici@npm:6.23.0"
|
resolution: "undici@npm:6.23.0"
|
||||||
@ -4571,6 +4813,13 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"universal-user-agent@npm:^6.0.0":
|
||||||
|
version: 6.0.0
|
||||||
|
resolution: "universal-user-agent@npm:6.0.0"
|
||||||
|
checksum: 10/5092bbc80dd0d583cef0b62c17df0043193b74f425112ea6c1f69bc5eda21eeec7a08d8c4f793a277eb2202ffe9b44bec852fa3faff971234cd209874d1b79ef
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"universal-user-agent@npm:^7.0.0, universal-user-agent@npm:^7.0.2":
|
"universal-user-agent@npm:^7.0.0, universal-user-agent@npm:^7.0.2":
|
||||||
version: 7.0.3
|
version: 7.0.3
|
||||||
resolution: "universal-user-agent@npm:7.0.3"
|
resolution: "universal-user-agent@npm:7.0.3"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user