Skip to content

Commit

Permalink
Merge pull request #134 from DanielVoogsgerd/audit
Browse files Browse the repository at this point in the history
chore(ci): Update the audit ci run
  • Loading branch information
Lut99 authored Oct 8, 2024
2 parents 9ec61de + 7c4d868 commit fceff3b
Showing 1 changed file with 4 additions and 37 deletions.
41 changes: 4 additions & 37 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Audit
on:
pull_request:
schedule:
- cron: '0 0 * * *'
- cron: '0 0 * * 0'

jobs:
dependencies:
Expand All @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4

- name: Audit dependencies (crates)
uses: actions-rs/audit-check@v1
uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -30,45 +30,12 @@ jobs:
uses: microsoft/DevSkim-Action@v1

- name: Upload result as build artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: devskim-results
path: devskim-results.sarif

- name: Upload results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v1
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: devskim-results.sarif

code-quality:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy, rustfmt

- name: Installing dependencies to build `protoc`...
run: sudo apt-get update && sudo apt-get install -y curl cmake gcc g++ make

- name: Install `protoc` to compile protobuf files
run: |
curl -L https://github.com/protocolbuffers/protobuf/archive/refs/tags/v3.21.11.tar.gz | tar -xz \
&& cd ./protobuf-3.21.11 \
&& cmake -Dprotobuf_BUILD_TESTS=off . \
&& cmake --build . -j $(nproc) \
&& sudo mv $(readlink protoc) /usr/bin/protoc \
&& cd ../ \
&& rm -r ./protobuf-3.21.11
- name: Run linter (clippy)
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings --allow clippy::manual_range_contains

0 comments on commit fceff3b

Please sign in to comment.