diff --git a/.github/workflows/clean-release-notes.yml b/.github/workflows/clean-release-notes.yml index 9006a5da..9b730527 100644 --- a/.github/workflows/clean-release-notes.yml +++ b/.github/workflows/clean-release-notes.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Remove ticket prefixes from release notes - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const release = context.payload.release; diff --git a/.github/workflows/e2e-suite-windows.yml b/.github/workflows/e2e-suite-windows.yml index 43843f8d..66106bec 100644 --- a/.github/workflows/e2e-suite-windows.yml +++ b/.github/workflows/e2e-suite-windows.yml @@ -74,7 +74,7 @@ jobs: env: LINODE_CLI_TOKEN: ${{ secrets.LINODE_TOKEN_2 }} - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 id: update-check-run if: ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }} env: diff --git a/.github/workflows/e2e-suite.yml b/.github/workflows/e2e-suite.yml index 61ec0fd8..7ee9c127 100644 --- a/.github/workflows/e2e-suite.yml +++ b/.github/workflows/e2e-suite.yml @@ -143,7 +143,7 @@ jobs: retention-days: 1 - name: Update PR Check Run - uses: actions/github-script@v8 + uses: actions/github-script@v9 id: update-check-run if: ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }} env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35c3b7c7..80d5b51e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: # This is necessary as we want to ensure that version tags # are properly formatted before passing them into the # DockerFile. - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 id: cli_version with: script: | diff --git a/.github/workflows/remote-release-trigger.yml b/.github/workflows/remote-release-trigger.yml index 2c05f2c0..8ccadbfa 100644 --- a/.github/workflows/remote-release-trigger.yml +++ b/.github/workflows/remote-release-trigger.yml @@ -29,7 +29,7 @@ jobs: - name: Calculate the desired release version id: calculate_version - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: SPEC_VERSION: ${{ github.event.client_payload.spec_version }} PREVIOUS_CLI_VERSION: ${{ steps.previoustag.outputs.tag }}