mirror of
https://github.com/hashicorp/setup-packer.git
synced 2026-03-31 00:22:34 +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>
30 lines
574 B
YAML
30 lines
574 B
YAML
# Copyright IBM Corp. 2022, 2026
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: packer
|
|
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
packer:
|
|
runs-on: ubuntu-latest
|
|
name: Run Packer
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup `packer`
|
|
uses: hashicorp/setup-packer@main
|
|
id: setup
|
|
with:
|
|
version: "1.10.0" # or latest
|
|
|
|
- name: Run `packer init`
|
|
id: init
|
|
run: "packer init ./image.pkr.hcl"
|
|
|
|
- name: Run `packer validate`
|
|
id: validate
|
|
run: "packer validate ./image.pkr.hcl"
|