mirror of
https://github.com/hashicorp/setup-packer.git
synced 2026-03-28 15:12:36 +00:00
* bumps `actions/checkout` to `v4` * bumps base Packer versions to `1.10` * docs update * package-lock maintenance * updates examples * updates deps * updates example Packer file with new key `bucket_labels` instead of `labels` * adds external plugin for testing * updates copywrite config * install `ncc` globally instead of via `devDeps`
32 lines
900 B
JSON
32 lines
900 B
JSON
{
|
|
"name": "setup-packer",
|
|
"version": "3.1.0",
|
|
"description": "A GitHub Action to install a specific version of HashiCorp Packer and add it to PATH.",
|
|
"keywords": [
|
|
"github-actions",
|
|
"hashicorp",
|
|
"packer"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:hashicorp/setup-packer.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "Kerim Satirli <kerim@hashicorp.com> & Jenna Goldstrich <jgoldstrich@hashicorp.com>",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build --no-cache",
|
|
"fmt": "prettier --write 'src/*.ts'",
|
|
"copywrite": "copywrite headers && copywrite license"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@hashicorp/github-actions-core": "github:hashicorp/github-actions-core#1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.8",
|
|
"@types/semver": "^7.5.8",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|