Skip to content

chore(deps): bump github.com/hashicorp/terraform from 1.2.1 to 1.5.7 #272

chore(deps): bump github.com/hashicorp/terraform from 1.2.1 to 1.5.7

chore(deps): bump github.com/hashicorp/terraform from 1.2.1 to 1.5.7 #272

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: go mod download
- name: Build binary
run: make build