-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (40 loc) · 974 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
name: Build
'on':
push:
branches:
- main
tags:
- "**"
pull_request_target:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
env:
TERRAFORM_VERSION: 1.2.7
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up go
uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- name: Download Terraform
run: "./scripts/download_terraform.sh $TERRAFORM_VERSION"
- name: Check format
run: "~/tfbin/terraform fmt -write=false -diff=true -check"
- name: Run Trivy
uses: aquasecurity/trivy-action@master
with:
scan-type: 'config'
hide-progress: false
exit-code: '1'
- name: Post to hook-exporter
run: "./.github/exporter.sh"
env:
EXPORTER_TOKEN: "${{ secrets.EXPORTER_TOKEN }}"
JOB_STATUS: "${{ job.status }}"
if: always() && github.ref == 'refs/heads/main'