Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/auto-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
printf 'Update tag? %s\n' "${UPDATE_TAG:?}"
printf 'Update release? %s\n' "${UPDATE_RELEASE:?}"
- name: "Delete previous nightly release"
uses: actions/github-script@v8
uses: actions/github-script@v9
if: "${{ steps.nightly-logic.outputs.UPDATE_RELEASE == 'true' }}"
with:
retries: 3
Expand All @@ -188,7 +188,7 @@ jobs:
throw new Error('getReleaseByTag failed: response is undefined or missing data.');
}
- name: "Update nightly tag"
uses: actions/github-script@v8
uses: actions/github-script@v9
if: "${{ steps.nightly-logic.outputs.UPDATE_TAG == 'true' }}"
with:
retries: 3
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
enableCrossOsArchive: true
lookup-only: true
- name: "Keep workflow alive"
uses: actions/github-script@v8
uses: actions/github-script@v9
timeout-minutes: 5
env:
WORKFLOW_REF: "${{ github.workflow_ref }}"
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:

steps:
- name: "Delete old caches"
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
retries: 3
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
printf 'SONAR_TOKEN_SET=%s\n' "${token_set:?}" 1>> "${GITHUB_OUTPUT?}"
- name: "Verify the dependency graph"
id: dependency-graph
uses: actions/github-script@v8
uses: actions/github-script@v9
timeout-minutes: 5
with:
retries: 3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-perm-xml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
enableCrossOsArchive: true
lookup-only: true
- name: "Keep workflow alive"
uses: actions/github-script@v8
uses: actions/github-script@v9
timeout-minutes: 5
env:
WORKFLOW_REF: "${{ github.workflow_ref }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
printf 'now=%s\n' "${now:?}" 1>> "${GITHUB_OUTPUT?}" || exit "${?}"
- name: "Create annotated tag"
id: tag-creation
uses: actions/github-script@v8
uses: actions/github-script@v9
timeout-minutes: 5
env:
ACTOR_ID: "${{ github.actor_id }}"
Expand Down