Skip to content
Merged
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
6 changes: 3 additions & 3 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 @@ -16,7 +16,7 @@ jobs:
run: sudo apt-get install -y cppcheck
- name: Run cppcheck on Aeon headers
run: cppcheck --enable=all --suppress=missingIncludeSystem --error-exitcode=1 core/ spell/ cast/ translate/ hive/ engines/ network/ 2>&1 | tee cppcheck.txt || true
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: cppcheck-report
Expand All @@ -43,7 +43,7 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v4
- uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v3
with:
generate_release_notes: true
name: "Aeon Browser ${{ github.ref_name }}"
6 changes: 3 additions & 3 deletions .github/workflows/retro_win32_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
fi

- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: retro-build-linux
Expand All @@ -155,7 +155,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download OW2 Build Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: retro-build-linux
path: retro/
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
}

- name: Upload Windows Test Results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: retro-test-windows
Expand Down
Loading