Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/release-cycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: ./.github/actions/setup
- id: state
name: Get state
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
TRIGGERING_ACTOR: ${{ github.triggering_actor }}
with:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
name: Create branch with release candidate
run: bash scripts/release/workflow/start.sh
- name: Re-run workflow
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
REF: ${{ steps.start.outputs.branch }}
with:
Expand All @@ -89,7 +89,7 @@ jobs:
if: needs.state.outputs.is_prerelease == 'true'
run: bash scripts/release/workflow/exit-prerelease.sh
- name: Re-run workflow
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: await require('./scripts/release/workflow/rerun.js')({ github, context })

Expand All @@ -108,7 +108,7 @@ jobs:
- name: Set up environment
uses: ./.github/actions/setup
- name: Set release title
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: await require('./scripts/release/workflow/set-changesets-pr-title.js')({ core })
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
TARBALL: ${{ steps.pack.outputs.tarball }}
TAG: ${{ steps.pack.outputs.tag }}
- name: Create Github Release
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PRERELEASE: ${{ needs.state.outputs.is_prerelease }}
with:
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
git checkout -B "$MERGE_BRANCH" "$GITHUB_REF_NAME"
git push -f origin "$MERGE_BRANCH"
- name: Create PR back to master
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.pulls.create({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-upgradeable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: false
- name: Create Github Release
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PRERELEASE: ${{ needs.state.outputs.is_prerelease }}
TARGET_COMMIT: ${{ github.ref }}
Expand Down