6669b85272
* feat: update action to use NodeJS 20 * fix: bump major version as recommended by github * fix: revert package version
23 lines
546 B
YAML
23 lines
546 B
YAML
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
---
|
|
|
|
name: "Setup HashiCorp Packer"
|
|
author: "Kerim Satirli"
|
|
description: "A GitHub Action to install a specific version of HashiCorp Packer and add it to PATH."
|
|
inputs:
|
|
version:
|
|
description: "The Packer version to install and add to PATH."
|
|
required: true
|
|
default: "latest"
|
|
outputs:
|
|
version:
|
|
description: "The Packer version that was installed and added to PATH."
|
|
runs:
|
|
using: "node20"
|
|
main: "dist/index.js"
|
|
branding:
|
|
icon: "package"
|
|
color: "blue"
|