From ab57f4100b4eb06bf14360e221f2448ff1989d3c Mon Sep 17 00:00:00 2001 From: John Cairns Date: Tue, 9 May 2023 12:17:44 -0500 Subject: [PATCH] use solc 0.8.19 for docs build --- .github/workflows/sphinx-docgen.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sphinx-docgen.yml b/.github/workflows/sphinx-docgen.yml index e511143..8a19310 100644 --- a/.github/workflows/sphinx-docgen.yml +++ b/.github/workflows/sphinx-docgen.yml @@ -38,12 +38,15 @@ jobs: run: | pip install --upgrade pip pip install -r site/requirements.txt + + - name: Install solc 0.8.19 + run: | pip install solc-select - solc-select install 0.8.17 + solc-select install 0.8.19 - name: Sphinx Gendoc env: - SOLC_VERSION: 0.8.17 + SOLC_VERSION: 0.8.19 run: | bin/gendoc.sh sphinx-build -b html site ./_site