fix(deps): update module github.com/gruntwork-io/terragrunt to v0.53.8 #863
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |