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 89b771c commit eeba8a6
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 @@ -35,7 +35,7 @@ jobs:
lcov --rc lcov_branch_coverage=1 --remove build/coverage.info '*mocks*' --output-file build/coverage.info
lcov --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
build-with-default-config:
Expand All @@ -56,15 +56,15 @@ jobs:
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 @@ -73,15 +73,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: ./
git-secrets:
Expand Down Expand Up @@ -111,7 +111,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 @@ -123,7 +123,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

verify-manifest:
runs-on: ubuntu-latest
Expand All @@ -134,7 +134,7 @@ jobs:
fetch-depth: 0

- 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 @@ -144,8 +144,8 @@ jobs:
runs-on: cbmc_ubuntu-latest_16-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
- 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 @@ -107,7 +107,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 eeba8a6

Please sign in to comment.