Skip to content

fix(deps): update module github.com/hashicorp/hcl/v2 to v2.18.0 #814

fix(deps): update module github.com/hashicorp/hcl/v2 to v2.18.0

fix(deps): update module github.com/hashicorp/hcl/v2 to v2.18.0 #814

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
container:
image: golang:1.20-alpine
steps:
- name: Install pre-requisites (1)
run: |
apk add --no-cache make jq zip curl git npm gettext
- name: Install pre-requisites (2)
run: |
go install github.com/github/hub@latest
- name: Checkout
uses: actions/checkout@master
- name: Build
run: make binaries
- name: Release
if: ${{ github.event_name != 'pull_request' }}
run: |
npm version patch
make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_EMAIL: "actions@users.noreply.github.com"
GIT_AUTHOR_NAME: "GitHub Actions"