Update parquet requirement from 52.0.0 to 53.0.0 #107
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
#SPDX-License-Identifier: MIT | |
#Copyright (c) "2023" . The DeepCausality Authors. All Rights Reserved. | |
name: Security Audit | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Audit Check # https://github.com/rustsec/audit-check/issues/2 | |
uses: rustsec/audit-check@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |