diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3bf1ad189..f6e9d8758 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,7 +36,7 @@ jobs: - name: Look for prior successful runs id: check if: github.event.inputs.git_version == '' - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{secrets.GITHUB_TOKEN}} result-encoding: string @@ -182,7 +182,7 @@ jobs: - name: Skip this job if there is a previous successful run if: needs.validate.outputs.skip != '' id: skip - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | core.info(`Skipping: There already is a successful run: ${{ needs.validate.outputs.skip }}`) diff --git a/.github/workflows/functional-tests.yaml b/.github/workflows/functional-tests.yaml index 16f0988cf..82faf676e 100644 --- a/.github/workflows/functional-tests.yaml +++ b/.github/workflows/functional-tests.yaml @@ -70,7 +70,7 @@ jobs: - name: Skip this job if there is a previous successful run if: inputs.skip != '' id: skip - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | core.info(`Skipping: There already is a successful run: ${{ inputs.skip }}`)