mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-16 08:37:18 +01:00
ci: Fix GitHub Actions CI macOS build errors (#1065)
Temporary fix for https://github.com/actions/virtual-environments/issues/1811
This commit is contained in:
committed by
GitHub
parent
d97edde9cd
commit
c7f88997d1
9
.github/workflows/lint.yml
vendored
9
.github/workflows/lint.yml
vendored
@@ -21,11 +21,16 @@ jobs:
|
||||
|
||||
docs:
|
||||
name: Docs
|
||||
runs-on: macOS-latest
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Install Deps
|
||||
run: brew update && brew install pre-commit terraform-docs terraform
|
||||
run: |
|
||||
# Temporary fix for https://github.com/actions/virtual-environments/issues/1811
|
||||
brew untap local/homebrew-openssl
|
||||
brew untap local/homebrew-python2
|
||||
brew update
|
||||
brew install pre-commit terraform-docs terraform
|
||||
- name: Check Docs
|
||||
run: pre-commit run --show-diff-on-failure --all-files terraform_docs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user