Skip to content

Commit

Permalink
Update changelog and CI action version
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed May 17, 2024
1 parent 4c1faeb commit ea85390
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: |
CFLAGS="-Wall -Wextra -DNDEBUG -DLIBRARY_LOG_LEVEL=LOG_DEBUG"
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Archive Test Results
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: system_test_results
path: |
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- env:
stepName: Build corePKCS11 Sanitizer Unit Tests
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone This Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- env:
stepName: Build corePKCS11 Unit Tests
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:

- name: Archive Test Results
if: steps.build-unit-tests.outcome == 'success'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unit_test_results
path: |
Expand All @@ -145,7 +145,7 @@ jobs:
- name: Upload coverage data to Codecov
if: steps.build-unit-tests.outcome == 'success'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: build/coverage.info
flags: unit_tests
Expand All @@ -155,7 +155,7 @@ jobs:
complexity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check complexity
uses: FreeRTOS/CI-CD-Github-Actions/complexity@main
with:
Expand All @@ -165,7 +165,7 @@ jobs:
doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check doxygen build
uses: FreeRTOS/CI-CD-Github-Actions/doxygen@main
with:
Expand All @@ -175,7 +175,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 @@ -184,7 +184,7 @@ jobs:
formatting:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check formatting
uses: FreeRTOS/CI-CD-Github-Actions/formatting@main
with:
Expand All @@ -194,7 +194,7 @@ jobs:
link-verifier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check Links
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@main
with:
Expand All @@ -203,7 +203,7 @@ jobs:
verify-manifest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
Expand All @@ -217,9 +217,9 @@ jobs:
git-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Checkout awslabs/git-secrets
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: awslabs/git-secrets
ref: master
Expand All @@ -234,7 +234,7 @@ jobs:
memory_statistics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: git submodule update --init --recursive --checkout
- name: Fetch dependencies (mbedtls)
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log for corePKCS11 Library

## v3.6.0 (May 2024)
* [#195](https://github.com/FreeRTOS/corePKCS11/pull/195)[#196](https://github.com/FreeRTOS/corePKCS11/pull/196) Add more unit test to increase code coverage rate
* [#193](https://github.com/FreeRTOS/corePKCS11/pull/193) Fix C_GetAttributeValue mbedtls port implementation
* [#190](https://github.com/FreeRTOS/corePKCS11/pull/190) Fix MISRA C 2012 deviations
* [#184](https://github.com/FreeRTOS/corePKCS11/pull/184) Support MBedTLS 3.5.1
Expand Down

0 comments on commit ea85390

Please sign in to comment.