Skip to content

Commit

Permalink
Use new branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Skptak committed Aug 21, 2023
1 parent f4b385d commit 9da1aee
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@ jobs:
echo ${EXCLUDE[@]} | xargs lcov --rc lcov_branch_coverage=1 -r build/coverage.info -o build/coverage.info
lcov --rc lcov_branch_coverage=1 --list build/coverage.info
- name: Check Coverage
uses: FreeRTOS/CI-CD-Github-Actions/coverage-cop@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/coverage-cop@v2
with:
coverage-file: ./build/coverage.info
complexity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check complexity
uses: FreeRTOS/CI-CD-Github-Actions/complexity@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/complexity@v2
with:
path: ./
doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run doxygen build
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@v2
with:
path: ./
spell-check:
Expand All @@ -57,15 +57,15 @@ jobs:
- name: Clone This Repo
uses: actions/checkout@v3
- name: Run spellings check
uses: FreeRTOS/CI-CD-GitHub-Actions/rust-spell-check@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-GitHub-Actions/rust-spell-check@v2
with:
path: ./
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check formatting
uses: FreeRTOS/CI-CD-Github-Actions/formatting@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/formatting@v2
with:
path: ./
ssot-check:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
with:
python-version: "3.11.0"
- name: Measure sizes
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@v2
with:
config: .github/memory_statistics_config.json
check_against: docs/doxygen/include/size_table.md
Expand All @@ -131,7 +131,7 @@ jobs:
- name: Check Links
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@v2
with:
path: ./

Expand All @@ -151,7 +151,7 @@ jobs:
run: git submodule update --checkout --init --recursive

- name: Run manifest verifier
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@v2
with:
path: ./
fail-on-incorrect-version: true
Expand All @@ -161,7 +161,7 @@ jobs:
runs-on: cbmc_ubuntu-latest_64-core
steps:
- name: Set up CBMC runner
uses: FreeRTOS/CI-CD-Github-Actions/set_up_cbmc_runner@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/set_up_cbmc_runner@v2
with:
kissat_tag: latest
cbmc_version: "5.73.0"
Expand All @@ -170,6 +170,6 @@ jobs:
sudo apt-get update
sudo apt-get install --yes --no-install-recommends gcc-multilib build-essential
- name: Run CBMC
uses: FreeRTOS/CI-CD-Github-Actions/run_cbmc@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/run_cbmc@v2
with:
proofs_dir: test/cbmc/proofs
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Doxygen generation
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@v2
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
git checkout -b ${{ github.event.inputs.version_number }} ${{
github.event.inputs.commit_id }}
- name: Generate SBOM
uses: FreeRTOS/CI-CD-Github-Actions/sbom-generator@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/sbom-generator@v2
with:
repo_path: ./
source_path: ./source
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Doxygen generation
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@CI-CD-Overhaul
uses: FreeRTOS/CI-CD-Github-Actions/doxygen-generation@v2
with:
ref: ${{ github.event.inputs.version_number }}
add_release: "true"
Expand Down

0 comments on commit 9da1aee

Please sign in to comment.