mirror of
https://github.com/hashicorp/setup-packer.git
synced 2026-03-28 07:02:32 +00:00
* Bump axios in the npm_and_yarn group across 1 directory Bumps the npm_and_yarn group with 1 update in the / directory: [axios](https://github.com/axios/axios). Updates `axios` from 1.13.2 to 1.13.5 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.13.2...v1.13.5) --- updated-dependencies: - dependency-name: axios dependency-version: 1.13.5 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com> * copy write fixes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kp2099 <karthik200499@gmail.com>
23 lines
547 B
YAML
23 lines
547 B
YAML
# Copyright IBM Corp. 2022, 2026
|
|
# 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"
|