Pin create-dmg version in signed build workflows (#401)

* Pin create-dmg version in release workflows

* Bump pinned create-dmg to 8.0.0
This commit is contained in:
Lawrence Chen 2026-02-25 19:30:10 -08:00 committed by GitHub
parent d7dbde3535
commit c7eec9fbb5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 36 additions and 2 deletions

View file

@ -16,6 +16,9 @@ jobs:
- name: Validate self-hosted runner guards
run: ./tests/test_ci_self_hosted_guard.sh
- name: Validate create-dmg version pinning
run: ./tests/test_ci_create_dmg_pinned.sh
web-typecheck:
runs-on: ubuntu-latest
defaults:

View file

@ -15,6 +15,9 @@ on:
permissions:
contents: write
env:
CREATE_DMG_VERSION: 8.0.0
jobs:
decide:
runs-on: ubuntu-latest
@ -112,7 +115,7 @@ jobs:
run: |
brew update
brew install zig
npm install --global create-dmg
npm install --global "create-dmg@${CREATE_DMG_VERSION}"
- name: Build GhosttyKit.xcframework
run: |

View file

@ -9,6 +9,9 @@ on:
permissions:
contents: write
env:
CREATE_DMG_VERSION: 8.0.0
jobs:
build-sign-notarize:
runs-on: self-hosted
@ -101,7 +104,7 @@ jobs:
run: |
brew update
brew install zig
npm install --global create-dmg
npm install --global "create-dmg@${CREATE_DMG_VERSION}"
- name: Download Metal Toolchain
if: steps.guard_release_assets.outputs.skip_all != 'true'