Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/aeon_ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Aeon CI
name: Aeon CI

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
name: Code Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install cppcheck
run: sudo apt-get install -y cppcheck
- name: Run cppcheck on Aeon headers
Expand All @@ -26,7 +26,7 @@ jobs:
name: Sovereign Integrity Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: No private keys or tokens in source
run: |
if grep -rE "BEGIN.*(PRIVATE|RSA|EC) KEY|ghp_|ghs_|glpat-" --include="*.h" --include="*.cpp" --include="*.py" . 2>/dev/null; then
Expand All @@ -42,7 +42,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_evolution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
Expand Down
Loading