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
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ jobs:
merge-multiple: true

- name: Update unstable git tag
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
with:
script: |
const script = require('./.github/scripts/update-unstable-tag.cjs');
Expand Down Expand Up @@ -460,7 +460,7 @@ jobs:
.github/scripts

- name: Remove label and comment
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
env:
BUILD_IMAGE_MANIFEST: ${{ needs.build-image.outputs.metadata }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-back.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
.github/scripts

- name: Push branch and open a PR
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
env:
SHA: ${{ inputs.sha }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
.github/scripts

- name: Create a new release branch
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
env:
BRANCH: release/v${{ needs.compute-version.outputs.short }}
SHA: ${{ needs.tag.outputs.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
.github/scripts
- name: Update the release branch
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
env:
BRANCH: "${{ github.ref_name }}"
SHA: ${{ needs.tag.outputs.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: cargo metadata --format-version 1

- name: Commit and tag using the GitHub API
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
id: commit
env:
VERSION: ${{ inputs.version }}
Expand All @@ -58,7 +58,7 @@ jobs:
return await script({ core, github, context });

- name: Update the refs
uses: actions/github-script@v7.0.1
uses: actions/github-script@v8.0.0
env:
VERSION: ${{ inputs.version }}
TAG_SHA: ${{ fromJSON(steps.commit.outputs.result).tag }}
Expand Down
Loading