Unverified Commit c7f88997 authored by Thierno IB. BARRY's avatar Thierno IB. BARRY Committed by GitHub
Browse files

ci: Fix GitHub Actions CI macOS build errors (#1065)

Temporary fix for https://github.com/actions/virtual-environments/issues/1811
parent d97edde9
Showing with 7 additions and 2 deletions
+7 -2
......@@ -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
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment