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
2 changes: 1 addition & 1 deletion .github/workflows/changelog-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
files: '**/changelog.d/**'

- name: Enforce Label
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
if: github.event.pull_request.draft == false
with:
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compare-golden-budgets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: ./scripts/eval-percent-diff.sh -t ${{ github.event.pull_request.base.sha }} 2>&1 | tee output.log

- name: Comment script output on PR
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/manual-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fetch-depth: 100

- name: React With Rocket
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
with:
script: |
github.rest.reactions.createForIssueComment({
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Extract Benchmark Name
id: extract-benchmark
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
with:
script: |
const regex = /^\/benchmark\s*([^\s]*)\s*(ghc96|ghc98|ghc910)?\s*$/;
Expand All @@ -62,7 +62,7 @@ jobs:

- name: Extract Branch Name
id: extract-branch
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
with:
script: |
async function isPullRequest() {
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
}

- name: Publish GH Action Link
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
with:
script: |
async function getJobUrl() {
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:


- name: Publish Results
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
with:
script: |
const fs = require("fs");
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-message-broker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Prepare Slack Message
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
id: prepare-slack-message

with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
issues: write
steps:
- name: Add Label
uses: actions/github-script@v7.1.0
uses: actions/github-script@v8
with:
script: |
const INTERNAL_LABELS = ["Internal", "status: triaged"];
Expand Down
Loading