Files
setup-packer/action.yml
Akhan Zhakiyanov 6669b85272 feat: update action runner to use NodeJS 20 (#90)
* feat: update action to use NodeJS 20

* fix: bump major version as recommended by github

* fix: revert package version
2024-02-07 15:58:20 -08:00

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"