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
4 changes: 2 additions & 2 deletions .github/actions/resolve-versions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
# https://github.com/marketplace/actions/github-script
- name: Resolve the current version from the manifest file.
id: current-version
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ inputs.github-token }}
result-encoding: string
Expand All @@ -47,7 +47,7 @@ runs:
# https://github.com/marketplace/actions/github-script
- name: Get current version and create new version
id: new-version
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
env:
CURRENT_VERSION: ${{ steps.current-version.outputs.result }}
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# https://github.com/marketplace/actions/github-script
- name: Generate release notes
id: generate_notes
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ steps.app-token.outputs.token }}
result-encoding: string
Expand All @@ -65,7 +65,7 @@ jobs:
# https://github.com/marketplace/actions/github-script
- name: Existing branch
id: existing-branch
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ steps.app-token.outputs.token }}
result-encoding: json
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Create pull request
if: ${{ steps.existing-branch.outputs.result == 'null' }}
id: create_pr
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ steps.app-token.outputs.token }}
script: |
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Update pull request
if: ${{ steps.existing-branch.outputs.result != 'null' }}
id: update-pr
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ steps.app-token.outputs.token }}
script: |
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
# https://github.com/marketplace/actions/github-script
- name: Create release
id: create-release
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ steps.app-token.outputs.token }}
result-encoding: string
Expand All @@ -265,7 +265,7 @@ jobs:

# https://github.com/marketplace/actions/github-script
- name: Comment on PR
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{ steps.app-token.outputs.token }}
script: |
Expand Down
Loading