diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 408a841..859ab31 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: run: | apt update apt install -y curl build-essential libpcre3 libpcre3-dev zlib1g zlib1g-dev libssl-dev libgd-dev libxml2 libxml2-dev uuid-dev clang - curl http://nginx.org/download/nginx-1.25.3.tar.gz | tar xz - cd nginx-1.25.3 && ./configure --conf-path=/etc/nginx/nginx.conf --with-pcre --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-http_ssl_module --modules-path=/etc/nginx/modules --with-http_v2_module --add-module=../examples/simple && make && make install + curl -fsSL https://nginx.org/download/nginx-1.31.1.tar.gz | tar xz + cd nginx-1.31.1 && ./configure --conf-path=/etc/nginx/nginx.conf --with-pcre --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-http_ssl_module --modules-path=/etc/nginx/modules --with-http_v2_module --add-module=../examples/simple && make && make install - name: Run tests run: cargo test --verbose diff --git a/nginx_module/wrapper.h b/nginx_module/wrapper.h index 3c976cc..bf74274 100644 --- a/nginx_module/wrapper.h +++ b/nginx_module/wrapper.h @@ -1,5 +1,5 @@ /* - * Copyright 2024 G-Core Innovations SARL + * Copyright 2026 G-Core Innovations SARL */ #include