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
6 changes: 5 additions & 1 deletion .github/workflows/gate-attestation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ permissions:

jobs:
gate:
uses: forkwright/.github/.github/workflows/hybrid-gate.yml@d74efb1d2d87ec86717dad5d42d468f6e3cf7994 # main
# WHY @main, not a pinned SHA: forkwright/.github publishes no tags, so a
# SHA pin here has no dependabot bump path and just freezes. forkwright/
# .github is first-party -- same org, same trust boundary -- not the
# third-party supply-chain case a SHA pin defends against.
uses: forkwright/.github/.github/workflows/hybrid-gate.yml@main
with:
fmt_cmd: "cargo fmt --all -- --check"
check_cmd: "cargo check --workspace --all-targets"
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ permissions:

jobs:
release-please:
# WHY @main: forkwright/.github publishes no tags, so a SHA pin here would
# have no dependabot bump path and would just freeze. First-party,
# same-org reusable; fleet convention pins it @main.
uses: forkwright/.github/.github/workflows/release-please.yml@main
secrets:
RELEASE_PLEASE_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }}
Expand Down