Skip to content

Commit

Permalink
ci: Merge remote-tracking branch 'ci/main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
c-git committed Apr 10, 2024
2 parents fed7576 + b1595bd commit ba66b07
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
name: Security audit

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
schedule:
- cron: '00 10 * * 3' # 06:00 GMT-4
Expand All @@ -11,6 +16,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: wykies/checkout@main
- uses: wykies/install-action@cargo-deny
- uses: taiki-e/install-action@cargo-deny
- name: Scan for vulnerabilities
run: cargo deny check advisories
7 changes: 6 additions & 1 deletion .github/workflows/general.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Rust

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
- main
- develop
- develop

env:
CARGO_TERM_COLOR: always

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Release Build Confirmation

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
pull_request:
branches:
- main
env:
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/semver_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Check Semver

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always


jobs:
semver-checks:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: wykies/checkout@main
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@main

0 comments on commit ba66b07

Please sign in to comment.