diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-07-17 11:14:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 11:14:59 (GMT) |
commit | 9b53b2f6ca41ade0152e6f4a091ec387b44e9c97 (patch) | |
tree | 1f8d7881652925c95a371894c0b98a69211cc35d /.github/workflows | |
parent | c9785cc5fcc950ec88bcc273e32295e75844fb7e (diff) | |
download | hdf5-9b53b2f6ca41ade0152e6f4a091ec387b44e9c97.zip hdf5-9b53b2f6ca41ade0152e6f4a091ec387b44e9c97.tar.gz hdf5-9b53b2f6ca41ade0152e6f4a091ec387b44e9c97.tar.bz2 |
Adds Autotools dependencies to CodeQL workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index eaa77be..11a6a1c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,6 +37,11 @@ jobs: # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support steps: + - name: Install dependencies + run: | + sudo apt update + sudo apt install automake autoconf libtool libtool-bin + - name: Checkout repository uses: actions/checkout@v3 |