Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci(codeql): bump bundled libmicrohttpd to 1.0.3
The CodeQL workflow was still pulling libmicrohttpd-0.9.64 from S3,
which is below the project's stated minimum of 1.0.0 and is no longer
served by the bucket - the install step was failing with "gzip:
stdin: not in gzip format" because curl received a 243-byte error
response instead of the tarball. Bump to 1.0.3 from the same S3
location so CodeQL can build the project again.
  • Loading branch information
etr committed Apr 7, 2026
commit 0c83a2230659ee9f7f66c1a62e3bffb1db31b13d
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:

- name: Install libmicrohttpd dependency
run: |
curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.64.tar.gz -o libmicrohttpd-0.9.64.tar.gz ;
tar -xzf libmicrohttpd-0.9.64.tar.gz ;
cd libmicrohttpd-0.9.64 ;
curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-1.0.3.tar.gz -o libmicrohttpd-1.0.3.tar.gz ;
tar -xzf libmicrohttpd-1.0.3.tar.gz ;
cd libmicrohttpd-1.0.3 ;
./configure --disable-examples ;
make ;
sudo make install ;
Expand Down
Loading