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
4 changes: 2 additions & 2 deletions .github/workflows/BuildAllPresets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
release: '12.2.Rel1'

- name: Setup Shared Compilation Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.SCCACHE_DIR }}
key: sccache-${{ github.workflow }}-${{ runner.os }}-${{ matrix.prefix }}-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}-${{ github.event.pull_request.number || github.ref }}
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:

- name: Upload Ubuntu RelWithDebInfo Builds
if: matrix.prefix == 'RelWithDebInfo' && matrix.operatingSystem == 'ubuntu-latest'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: firmware-release-with-debug-info
path: build/${{ matrix.prefix }}/*.elf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- name: Setup Shared Compilation Cache
if: matrix.build_mode == 'manual'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.SCCACHE_DIR }}
key: sccache-${{ github.workflow }}-${{ runner.os }}-${{ matrix.languages }}-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}-${{ github.event.pull_request.number || github.ref }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Upload Analysis Results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: codeql-${{ matrix.languages }}
path: ${{ steps.analyze.outputs.sarif-output }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/RunCTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fetch-depth: 1

- name: Setup Shared Compilation Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.SCCACHE_DIR }}
key: sccache-${{ github.workflow }}-${{ runner.os }}-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
Loading