Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/sdlc-sdk-update-evaluate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@ jobs:
# agent's `Bash(grep:*)` grant can read; the `Read(**/.git/**)` deny does not constrain Bash.
persist-credentials: false

# Every Debug build regenerates these acknowledgements via LicensePlist, unrelated to the SDK
# bump. skip-worktree tells git to ignore changes to them for the rest of this checkout, so
# they can't be flagged as an uncommitted fix later in the job.
- name: Ignore acknowledgements regenerated by Debug builds
if: steps.gate.outputs.skip == 'false'
run: |
git ls-files \
'Bitwarden/Application/Support/Settings.bundle/Acknowledgements*' \
'Authenticator/Application/Support/Settings.bundle/Acknowledgements*' \
| xargs git update-index --skip-worktree

# Pinned revisions live on `unstable`; `main` is months stale.
- name: Clone sdk-swift
if: steps.gate.outputs.skip == 'false'
Expand Down
Loading