diff options
| author | Masaya Suzuki <15100604+massongit@users.noreply.github.com> | 2023-01-15 16:14:06 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-15 16:14:06 +0900 |
| commit | fb0f9711ba47c9f285d6738c4ac1e7df33919b60 (patch) | |
| tree | 61ca0eaeb2358572eb40d3ff672f113685e1d8e7 /.github/workflows | |
| parent | enhance(client): show readable error when rate limit exceeded (diff) | |
| download | sharkey-fb0f9711ba47c9f285d6738c4ac1e7df33919b60.tar.gz sharkey-fb0f9711ba47c9f285d6738c4ac1e7df33919b60.tar.bz2 sharkey-fb0f9711ba47c9f285d6738c4ac1e7df33919b60.zip | |
Update actions/github-script (#9588)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pr-preview-deploy.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pr-preview-deploy.yml b/.github/workflows/pr-preview-deploy.yml index 5777679e2b..9b786d34aa 100644 --- a/.github/workflows/pr-preview-deploy.yml +++ b/.github/workflows/pr-preview-deploy.yml @@ -13,7 +13,7 @@ jobs: github.event.client_payload.slash_command.sha != '' && contains(github.event.client_payload.pull_request.head.sha, github.event.client_payload.slash_command.sha) steps: - - uses: actions/github-script@v5 + - uses: actions/github-script@v6.3.3 id: check-id env: number: ${{ github.event.client_payload.pull_request.number }} @@ -37,7 +37,7 @@ jobs: return check[0].id; - - uses: actions/github-script@v5 + - uses: actions/github-script@v6.3.3 env: check_id: ${{ steps.check-id.outputs.result }} details_url: ${{ github.server_url }}/${{ github.repository }}/runs/${{ github.run_id }} @@ -72,7 +72,7 @@ jobs: timeout: 15m # Update check run called "integration-fork" - - uses: actions/github-script@v5 + - uses: actions/github-script@v6.3.3 id: update-check-run if: ${{ always() }} env: |