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
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:

- name: Create PR for manual runs
if: github.event_name == 'workflow_dispatch'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const branchName = '${{ needs.run-benchmarks.outputs.branch_name }}';
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:

- name: Comment on PR
if: github.event.inputs.pr_number != '' || github.event_name == 'pull_request'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const prNumber = ${{ github.event.inputs.pr_number || github.event.pull_request.number }};
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# the changelog.
- name: Create build-specific nightly tag
if: ${{ env.IS_NIGHTLY == 'true' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
TAG_NAME: ${{ steps.release_info.outputs.tag_name }}
with:
Expand Down Expand Up @@ -321,14 +321,14 @@ jobs:
# Moves the `nightly` tag to `HEAD`
- name: Move nightly tag
if: ${{ env.IS_NIGHTLY == 'true' }}
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const moveTag = require('./.github/scripts/move-tag.js')
await moveTag({ github, context }, 'nightly')

- name: Delete old nightlies
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const prunePrereleases = require('./.github/scripts/prune-prereleases.js')
Expand Down
Loading