Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
fix: bump tf version in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eiladin committed Dec 15, 2022
1 parent 175e1b4 commit 86db8cf
Showing 1 changed file with 27 additions and 28 deletions.
55 changes: 27 additions & 28 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,40 @@ name: test

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Set up Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.3.6
terraform_wrapper: false

- name: Set up Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 0.12.28
terraform_wrapper: false
- name: Build
uses: goreleaser/goreleaser-action@v2.1.1
with:
version: latest
args: release --snapshot --skip-validate --skip-publish --skip-sign

- name: Build
uses: goreleaser/goreleaser-action@v2.1.1
with:
version: latest
args: release --snapshot --skip-validate --skip-publish --skip-sign

- name: Run test
run: make test
env:
GIT_AUTHOR_NAME: "Gitops Provider"
GIT_AUTHOR_EMAIL: "email@work.com"
GIT_COMMITTER_NAME: "Gitops Provider"
GIT_COMMITTER_EMAIL: "email@work.com"
- name: Run test
run: make test
env:
GIT_AUTHOR_NAME: "Gitops Provider"
GIT_AUTHOR_EMAIL: "email@work.com"
GIT_COMMITTER_NAME: "Gitops Provider"
GIT_COMMITTER_EMAIL: "email@work.com"

0 comments on commit 86db8cf

Please sign in to comment.