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
2 changes: 1 addition & 1 deletion .github/workflows/docker-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ jobs:
- name: Parse Changelog from changes.md
id: parse_changelog
if: steps.check_changelog.outputs.has_changelog == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
RELEASE_VERSION_INPUT: ${{ env.RELEASE_VERSION }}
WORKING_DIRECTORY_INPUT: ${{ env.WORKING_DIRECTORY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ jobs:
- name: Check if release already exists
id: check_release
if: steps.branches.outputs.is_release_branch == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
PACKAGE_VERSION: ${{ steps.pkg.outputs.package_version }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-release-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:

- name: Parse Changelog
id: changelog
uses: actions/github-script@v8
uses: actions/github-script@v9
env:
RELEASE_VERSION: ${{ steps.package_version.outputs.release_version }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wp-gh-release-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Prepare variables
- name: Prepare vars
id: vars
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
core.setOutput('is_prerelease', is_prerelease );

- name: Parse Changelog Entries
uses: actions/github-script@v8
uses: actions/github-script@v9
id: changelog
env:
VERSION_INPUT: ${{ steps.vars.outputs.version }}
Expand Down