File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 steps :
1414 - name : Checkout
15- uses : actions/checkout@v4
15+ uses : actions/checkout@v6
1616
1717 - name : Setup Node.js
1818 uses : actions/setup-node@v4
Original file line number Diff line number Diff line change 1212 release :
1313 runs-on : ubuntu-latest
1414 outputs :
15- paths_released : ${{ steps.release-pl.outputs.paths_released }}
16- pr : ${{ steps.release-pl.outputs.pr }}
15+ prs : ${{ steps.release-pl.outputs.prs }}
1716 prs_created : ${{ steps.release-pl.outputs.prs_created }}
1817 permissions :
1918 contents : write
@@ -33,11 +32,14 @@ jobs:
3332 permissions :
3433 contents : write
3534 pull-requests : write
35+ strategy :
36+ matrix :
37+ pr : ${{ fromJson(needs.release.outputs.prs) }}
3638 steps :
3739 - name : Checkout release PR branch
38- uses : actions/checkout@v6
40+ uses : actions/checkout@v4
3941 with :
40- ref : ${{ fromJson(needs.release.outputs.pr) .headBranchName }}
42+ ref : ${{ matrix.pr .headBranchName }}
4143 token : ${{ secrets.GITHUB_TOKEN }}
4244
4345 - name : Setup Node.js
You can’t perform that action at this time.
0 commit comments