Skip to content
Merged
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/issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Check contributor permissions
id: contributor
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Add triage label
if: steps.contributor.outputs.result == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
await github.rest.issues.addLabels({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ jobs:
release/openshell-driver-vm-aarch64-apple-darwin.tar.gz

- name: Prune managed assets from dev release
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ jobs:
release/openshell-driver-vm-aarch64-apple-darwin.tar.gz

- name: Prune removed VM checksum asset
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-vm-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
git push --force origin vm-runtime
- name: Prune stale runtime assets from vm-runtime release
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vouch-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Check org membership
id: org-check
if: env.ORG_READ_TOKEN != ''
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
github-token: ${{ secrets.ORG_READ_TOKEN }}
result-encoding: string
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Check if contributor is vouched
if: steps.org-check.outputs.result != 'skip'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const author = context.payload.pull_request.user.login;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vouch-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Process /vouch command
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const commenter = context.payload.comment.user.login;
Expand Down
Loading