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
6 changes: 3 additions & 3 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Process /assign command
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Process /unassign command
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Process /help command
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Auto-label issues
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo, number } = context.issue;
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
fetch-depth: 0

- name: Auto-label PRs
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo, number } = context.issue;
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Generate changelog
id: changelog
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo } = context.repo;
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
path: RELEASE_NOTES.md

- name: Create or update release notes
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/first-time-contributor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- name: Greet first-time issue creators
if: github.event_name == 'issues'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo, number } = context.issue;
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Greet first-time PR creators
if: github.event_name == 'pull_request_target'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { owner, repo, number } = context.issue;
Expand Down
Loading