Skip to content

Commit

Permalink
build.yml: Add version for github-script
Browse files Browse the repository at this point in the history
  • Loading branch information
abraxa committed Aug 22, 2024
1 parent 0346745 commit 036609e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- name: Get PR hash
id: sha
uses: actions/github-script
uses: actions/github-script@v7
with:
result-encoding: string
script: |
Expand All @@ -33,7 +33,7 @@ jobs:
return pr.data.head.sha
- name: Create pending status check
uses: actions/github-script
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createCommitStatus({
Expand All @@ -58,7 +58,7 @@ jobs:
steps:
- name: Get PR hash
id: sha
uses: actions/github-script
uses: actions/github-script@v7
with:
result-encoding: string
script: |
Expand All @@ -71,7 +71,7 @@ jobs:
return pr.data.head.sha
- name: Update status
uses: actions/github-script
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createCommitStatus({
Expand All @@ -95,7 +95,7 @@ jobs:
steps:
- name: Get PR hash
id: sha
uses: actions/github-script
uses: actions/github-script@v7
with:
result-encoding: string
script: |
Expand All @@ -108,7 +108,7 @@ jobs:
return pr.data.head.sha
- name: Update status
uses: actions/github-script
uses: actions/github-script@v7
with:
script: |
github.rest.repos.createCommitStatus({
Expand Down

0 comments on commit 036609e

Please sign in to comment.