Skip to content

Commit b80e2f2

Browse files
committed
bump github/branch-deploy to v10
1 parent 1677543 commit b80e2f2

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/branch-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: github/branch-deploy@v9
22+
- uses: github/branch-deploy@v10
2323
id: branch-deploy
2424
with:
2525
admins: the-hideout/core-contributors

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414
outputs: # set outputs for use in downstream jobs
1515
continue: ${{ steps.deployment-check.outputs.continue }}
16+
sha: ${{ steps.deployment-check.outputs.sha }}
1617

1718
steps:
1819
# https://github.com/github/branch-deploy/blob/d3c24bd92505e623615b75ffdfac5ed5259adbdb/docs/merge-commit-strategy.md
1920
- name: deployment check
20-
uses: github/branch-deploy@v9
21+
uses: github/branch-deploy@v10
2122
id: deployment-check
2223
with:
2324
merge_deploy_mode: "true"
@@ -32,6 +33,8 @@ jobs:
3233
steps:
3334
- name: checkout
3435
uses: actions/checkout@v4
36+
with:
37+
ref: ${{ needs.deployment-check.outputs.sha }}
3538

3639
- name: setup node
3740
uses: actions/setup-node@v4

.github/workflows/unlock-on-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: unlock on merge
19-
uses: github/branch-deploy@v9
19+
uses: github/branch-deploy@v10
2020
id: unlock-on-merge
2121
with:
2222
unlock_on_merge_mode: "true" # <-- indicates that this is the "Unlock on Merge Mode" workflow

0 commit comments

Comments
 (0)