Skip to content

Commit 0e2be20

Browse files
committed
chore: fixes release
1 parent 85d7960 commit 0e2be20

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ jobs:
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

0 commit comments

Comments
 (0)