Compare commits

...

2 Commits

Author SHA1 Message Date
Ken Van Hoeylandt
e6e04954aa Security improvement 2026-07-07 23:36:01 +02:00
Ken Van Hoeylandt
9f110efdad Fix for job 2026-07-07 23:35:02 +02:00

View File

@ -37,13 +37,15 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- id: set-matrix
run: python3 Buildscripts/gh-generate-device-matrix.py
BuildFirmware:
runs-on: ubuntu-latest
needs: GenerateDeviceMatrix
strategy:
matrix: ${{ fromJSON(needs.generate-device-matrix.outputs.matrix) }}
matrix: ${{ fromJSON(needs.GenerateDeviceMatrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
with: