Skip to content

fix(openssl): bump to address CVE-2025-3416 #61

fix(openssl): bump to address CVE-2025-3416

fix(openssl): bump to address CVE-2025-3416 #61

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
stable-tests:
name: Run tests on stable rust
uses: ./.github/workflows/test.yml
with:
rust-version: stable
minimal-versions-tests:
name: Run tests with minimal dependency and compiler versions
uses: ./.github/workflows/test.yml
with:
rust-version: 1.63.0 # also change in Cargo.toml and README.md
minimal-versions: true
formatting:
name: Code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- -D warnings