Bump github/codeql-action from 2 to 3 #168
Workflow file for this run
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: Valgrind memcheck | |
on: | |
pull_request: | |
push: | |
# don't run on packaging and dependabot branches | |
branches-ignore: | |
- 'for-debian' | |
- 'debian/**' | |
- 'pristine-tar' | |
- 'dependabot/**' | |
paths: | |
- '**' | |
- '!doc/**' | |
- '!**.md' | |
permissions: | |
contents: read | |
jobs: | |
debian-bookworm: | |
runs-on: ubuntu-latest | |
container: debian:bookworm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update | |
apt-get -y install python3-yaml apache2-bin apache2-dev curl gnutls-bin libapr1-dev libgnutls28-dev openssl pkg-config procps iproute2 softhsm2 valgrind | |
- name: build mod_gnutls and run tests with Valgrind | |
uses: ./.github/build-action/ | |
with: | |
configure-options: --enable-valgrind-test | |
artifact-prefix: valgrind |