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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,26 +59,26 @@ jobs:
- { name: windows-msvc, os: windows-2022 }
- { name: macos-arm64, os: macos-14 }
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
path: brosoundml

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/bromath
path: bromath

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/brotensor
path: brotensor

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/brolm
path: brolm

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/broimage
path: broimage
Expand Down Expand Up @@ -130,26 +130,26 @@ jobs:
name: Coverage
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
path: brosoundml

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/bromath
path: bromath

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/brotensor
path: brotensor

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/brolm
path: brolm

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/broimage
path: broimage
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:

- name: Upload HTML report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-html
path: brosoundml/coverage-html/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,28 @@ jobs:
actions: read

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
path: brosoundml

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/bromath
path: bromath

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/brotensor
path: brotensor

- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/brolm
path: brolm

# Needed transitively: brolm resolves broimage from the top-level source
# dir, which here is brosoundml. See the note in ci.yml.
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
repository: wlejon/broimage
path: broimage
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
# The query set lives in the config file, which also documents why
# cpp/path-injection is excluded.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: c-cpp
build-mode: manual
Expand All @@ -95,6 +95,6 @@ jobs:
run: cmake --build build --parallel 4

- name: Analyze
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: /language:c-cpp
Loading