Skip to content
Open
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
#-------- Info gathering and checks
- name: Set pushed tag
id: set-tag
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand All @@ -46,7 +46,7 @@ jobs:
fi
- name: Determine whether releasing the master branch
id: set-is-master-branch
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand All @@ -62,7 +62,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Determine name of stable branch for pushed tag
id: set-stable-branch
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand All @@ -71,7 +71,7 @@ jobs:
return result
- name: Determine whether releasing stable branch for pushed tag
id: set-is-stable-branch
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
fi
- name: Set update version
id: set-update-version
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
- name: Create new stable branch when releasing master branch
if: steps.set-is-master-branch.outputs.result == 'true'
id: create-stable-branch
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.git.createRef({
Expand All @@ -200,7 +200,7 @@ jobs:
- name: Retry create new stable branch when releasing master branch if HTTP error 422
if: steps.set-is-master-branch.outputs.result == 'true' && steps.create-stable-branch.outputs.status == 422
id: create-stable-branch-2
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.git.createRef({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
steps:
- name: Set run type (normal, scheduled, release)
id: set-run-type
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down
Loading