Skip to content

Commit 0c83a22

Browse files
committed
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.
1 parent 2efd41a commit 0c83a22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838

3939
- name: Install libmicrohttpd dependency
4040
run: |
41-
curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.64.tar.gz -o libmicrohttpd-0.9.64.tar.gz ;
42-
tar -xzf libmicrohttpd-0.9.64.tar.gz ;
43-
cd libmicrohttpd-0.9.64 ;
41+
curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-1.0.3.tar.gz -o libmicrohttpd-1.0.3.tar.gz ;
42+
tar -xzf libmicrohttpd-1.0.3.tar.gz ;
43+
cd libmicrohttpd-1.0.3 ;
4444
./configure --disable-examples ;
4545
make ;
4646
sudo make install ;

0 commit comments

Comments
 (0)