diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index fb6bf60..fcdb6a2 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -17,7 +17,7 @@ jobs: name: Retrieve PR information env: PULL_REQUEST: ${{ toJSON(github.event.pull_request) }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | let pr = JSON.parse(process.env.PULL_REQUEST); @@ -61,7 +61,7 @@ jobs: env: BRANCHES: ${{ inputs.branches }} BASE_REF: ${{ fromJSON(steps.pr.outputs.json).base.ref }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const branches = JSON.parse(process.env.BRANCHES); diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 17e5859..cda03cb 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -33,7 +33,7 @@ jobs: env: BRANCHES: ${{ inputs.branches }} REF: ${{ github.ref }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const branches = JSON.parse(process.env.BRANCHES); @@ -53,7 +53,7 @@ jobs: REPOSITORY: ${{ github.repository }} QUERY: repository:${{ github.repository }} is:pr is:merged ${{ github.sha }} SHA: ${{ github.sha }} - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const [owner, repo] = process.env.REPOSITORY.split('/');