diff --git a/.github/workflows/benches.yml b/.github/workflows/benches.yml index 3ab0873a..32c67f42 100644 --- a/.github/workflows/benches.yml +++ b/.github/workflows/benches.yml @@ -1,35 +1,34 @@ -# TODO(tarcieri): re-enable after UHFs are bumped -#name: benches -# -#on: -# pull_request: -# paths: -# - "benches/**" -# - "Cargo.*" -# push: -# branches: master -# -#defaults: -# run: -# working-directory: benches -# -#env: -# CARGO_INCREMENTAL: 0 -# RUSTFLAGS: "-Dwarnings" -# -#jobs: -# build: -# runs-on: ubuntu-latest -# strategy: -# matrix: -# rust: -# - 1.41.0 # MSRV -# - stable -# steps: -# - uses: actions/checkout@v1 -# - uses: actions-rs/toolchain@v1 -# with: -# profile: minimal -# toolchain: ${{ matrix.rust }} -# override: true -# - run: cargo build --release +name: benches + +on: + pull_request: + paths: + - "benches/**" + - "Cargo.*" + push: + branches: master + +defaults: + run: + working-directory: benches + +env: + CARGO_INCREMENTAL: 0 + RUSTFLAGS: "-Dwarnings" + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + rust: + - 1.41.0 # MSRV + - stable + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: ${{ matrix.rust }} + override: true + - run: cargo build --release diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 957267c6..d1549e17 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -1,25 +1,24 @@ -# TODO(tarcieri): re-enable after UHFs are bumped -#name: Security Audit -#on: -# pull_request: -# paths: Cargo.lock -# push: -# branches: master -# paths: Cargo.lock -# schedule: -# - cron: "0 0 * * *" -# -#jobs: -# security_audit: -# name: Security Audit -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v1 -# - name: Cache cargo bin -# uses: actions/cache@v1 -# with: -# path: ~/.cargo/bin -# key: ${{ runner.os }}-cargo-audit-v0.12 -# - uses: actions-rs/audit-check@v1 -# with: -# token: ${{ secrets.GITHUB_TOKEN }} +name: Security Audit +on: + pull_request: + paths: Cargo.lock + push: + branches: master + paths: Cargo.lock + schedule: + - cron: "0 0 * * *" + +jobs: + security_audit: + name: Security Audit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Cache cargo bin + uses: actions/cache@v1 + with: + path: ~/.cargo/bin + key: ${{ runner.os }}-cargo-audit-v0.12 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index 75e8ee85..d5efd11e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +# [[package]] name = "aead" version = "0.4.0"