Skip to content

Commit

Permalink
Onboarding manifest check
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed Jun 5, 2024
1 parent eb45222 commit ac67b24
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run spellings check
uses: FreeRTOS/CI-CD-Github-Actions/spellings@main
with:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Run link verifier
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
with:
Expand All @@ -32,7 +32,7 @@ jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Uncrustify
run: sudo apt-get install uncrustify
- name: Run Uncrustify
Expand All @@ -59,9 +59,9 @@ jobs:
git-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Checkout awslabs/git-secrets
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: awslabs/git-secrets
ref: master
Expand All @@ -72,3 +72,17 @@ jobs:
run: |
git-secrets --register-aws
git-secrets --scan
verify-manifest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0

- name: Run manifest verifier
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@main
with:
path: ./
fail-on-incorrect-version: true

0 comments on commit ac67b24

Please sign in to comment.