diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 7cd44df..de6321e 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -11,8 +11,13 @@ jobs: build-appimage: name: Build (Linux, AppImage) runs-on: ubuntu-22.04 + permissions: + contents: read + id-token: write steps: - uses: actions/checkout@v4 + with: + submodules: recursive - name: Install build deps run: | @@ -24,7 +29,7 @@ jobs: with: version: 6.10.0 dir: .. - modules: qtwayland qtshadertools + modules: qtshadertools setup-python: false cache: true diff --git a/.github/workflows/build-dmg.yml b/.github/workflows/build-dmg.yml index 4a794e2..84c0b83 100644 --- a/.github/workflows/build-dmg.yml +++ b/.github/workflows/build-dmg.yml @@ -11,15 +11,21 @@ jobs: build-dmg: name: Build (macOS, DMG) runs-on: macos-14 + permissions: + contents: read + id-token: write steps: - uses: actions/checkout@v4 + with: + submodules: recursive - name: Install Qt uses: jurplel/install-qt-action@v4 with: version: 6.10.* modules: qtshadertools - setup-python: false + setup-python: true + python-version: '3.11' cache: true - name: Build DMG