mirror of
https://github.com/docker/metadata-action.git
synced 2025-12-13 21:09:01 +08:00
Some checks failed
ci / context (git) (push) Failing after 1s
ci / context (workflow) (push) Failing after 1s
ci / multi-images (push) Failing after 1s
ci / tag-schedule (cron-{{date 'YYYYMMDD'}}) (push) Failing after 1s
ci / tag-schedule (schedule) (push) Failing after 1s
ci / tag-schedule ({{date 'YYYYMMDD-HHmmss'}}) (push) Failing after 1s
ci / tag-match (\d.\d, 0) (push) Failing after 1s
ci / tag-match (\d.\d.\d, 0) (push) Failing after 1s
ci / tag-schedule () (push) Successful in 11s
ci / tag-semver (auto) (push) Failing after 1s
ci / tag-semver (false) (push) Failing after 1s
ci / flavor (push) Failing after 1s
ci / tag-match (v(.*), 1) (push) Successful in 6s
ci / images (push) Failing after 1s
ci / global-exps (push) Failing after 1s
ci / tag-semver (true) (push) Successful in 7s
ci / json (push) Failing after 1s
ci / bake (push) Failing after 1s
ci / custom-labels-annotations (push) Successful in 7s
ci / sep-tags ( ) (push) Failing after 1s
ci / output-env (push) Failing after 1s
ci / sep-tags (,) (push) Failing after 3s
ci / no-output-env (push) Failing after 1s
ci / no-images (push) Failing after 1s
ci / bake-annotations (push) Failing after 3s
ci / bake-path-context (push) Failing after 1s
ci / sha-short (16) (push) Failing after 1s
ci / dump (push) Failing after 1s
test / test (push) Failing after 1s
validate / prepare (push) Failing after 1s
ci / sha-short () (push) Successful in 9s
validate / validate (push) Has been skipped
ci / docker-push (push) Failing after 44s
chore(deps): Bump moment-timezone from 0.5.46 to 0.5.47
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "docker-metadata-action",
|
|
"description": "GitHub Action to extract metadata (tags, labels) for Docker",
|
|
"main": "src/main.ts",
|
|
"scripts": {
|
|
"build": "ncc build --source-map --minify --license licenses.txt",
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
"eslint:fix": "eslint --fix .",
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/docker/metadata-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"docker",
|
|
"metadata",
|
|
"tag",
|
|
"label"
|
|
],
|
|
"author": "Docker Inc.",
|
|
"license": "Apache-2.0",
|
|
"packageManager": "yarn@3.6.3",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.0",
|
|
"@docker/actions-toolkit": "^0.56.0",
|
|
"@renovate/pep440": "^1.0.0",
|
|
"csv-parse": "^5.6.0",
|
|
"handlebars": "^4.7.8",
|
|
"moment": "^2.30.1",
|
|
"moment-timezone": "^0.5.47",
|
|
"semver": "^7.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/csv-parse": "^1.2.2",
|
|
"@types/node": "^20.12.12",
|
|
"@types/semver": "^7.5.8",
|
|
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
"@typescript-eslint/parser": "^7.9.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^28.5.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|