chore: Update actions/github-script to v9 (not sure how this got lost)

also add explicit semicolon for getOctokit
This commit is contained in:
GreemDev 2026-05-04 21:18:33 -05:00
parent e656de5fff
commit 0d66cfa281

View file

@ -210,12 +210,12 @@ jobs:
- build - build
- build_macos - build_macos
steps: steps:
- uses: actions/github-script@v6 - uses: actions/github-script@v9
with: with:
script: | script: |
const forgejo = getOctokit(process.env.FORGEJO_TOKEN, { const forgejo = getOctokit(process.env.FORGEJO_TOKEN, {
baseUrl: 'https://git.ryujinx.app/api/v1' baseUrl: 'https://git.ryujinx.app/api/v1'
}) });
const {owner, repo} = context.repo; const {owner, repo} = context.repo;
const run_id = ${{forgejo.event.workflow_run.id}}; const run_id = ${{forgejo.event.workflow_run.id}};