2.4.13.2: prevent DoS core dump with OIDCStripCookies; CVE-2023-28625 #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y apache2-dev libcjose-dev libssl-dev check pkg-config | |
sudo apt-get install -y libjansson-dev libcurl4-openssl-dev libhiredis-dev libpcre2-dev | |
- name: Configure | |
run: | | |
./autogen.sh | |
./configure | |
- name: Make | |
run: make | |
- name: Test | |
run: make check | |
- name: Distcheck | |
run: make distcheck DESTDIR=/tmp/mod_auth_openidc |