Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/jekyll-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
github.event.workflow_run.conclusion == 'success'
steps:
- name: 'Download artifact github pages'
uses: actions/github-script@v7
uses: actions/github-script@v8
id: artifactgh-pages
with:
script: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
github.event.workflow_run.conclusion == 'success'
steps:
- name: get PR number
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
Expand All @@ -88,7 +88,7 @@ jobs:
unzip pr_number.zip
echo "number=$(cat pr_number.txt)" >> $GITHUB_OUTPUT
- name: Post address
uses: actions/github-script@v7
uses: actions/github-script@v8
if: ${{ success()}}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -100,7 +100,7 @@ jobs:
issue_number: ${{steps.prnumber.outputs.number}}
});
- name: Post error
uses: actions/github-script@v7
uses: actions/github-script@v8
if: ${{ failure()}}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down