mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-15 16:12:35 +00:00
* Bump @actions/tool-cache from 1.7.2 to 2.0.1 Bumps [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) from 1.7.2 to 2.0.1. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/tool-cache/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/tool-cache) --- updated-dependencies: - dependency-name: "@actions/tool-cache" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump @actions/tool-cache from 1.7.2 to 2.0.1 Bumps [@actions/tool-cache](https://github.com/actions/toolkit/tree/HEAD/packages/tool-cache) from 1.7.2 to 2.0.1. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/tool-cache/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/tool-cache) --- updated-dependencies: - dependency-name: "@actions/tool-cache" dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * run build * run build Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Pogran <jpogran@outlook.com>
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "setup-terraform",
|
|
"version": "2.0.0",
|
|
"description": "Setup Terraform CLI for GitHub Actions",
|
|
"license": "MPL-2.0",
|
|
"publisher": "hashicorp",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hashicorp/setup-terraform.git"
|
|
},
|
|
"scripts": {
|
|
"test": "cd wrapper && npm test && cd .. && semistandard --env jest && jest --coverage",
|
|
"lint": "cd wrapper && npm run lint && cd .. && semistandard --env jest --fix",
|
|
"build": "cd wrapper && npm run build && cd .. && ncc build index.js --out dist",
|
|
"postinstall": "cd wrapper && npm install",
|
|
"prepare": "husky install"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"dependencies": {
|
|
"@actions/core": "^1.8.2",
|
|
"@actions/github": "^5.0.3",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@hashicorp/js-releases": "^1.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "0.33.4",
|
|
"husky": "^8.0.1",
|
|
"jest": "^28.1.0",
|
|
"nock": "^13.2.4",
|
|
"semistandard": "^16.0.1"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/dist/",
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/wrapper/"
|
|
]
|
|
},
|
|
"semistandard": {
|
|
"ignore": [
|
|
"dist/**",
|
|
"wrapper/**"
|
|
]
|
|
}
|
|
}
|