diff --git a/.github/workflows/docker-ops.yml b/.github/workflows/docker-ops.yml index 1a33280..5748238 100644 --- a/.github/workflows/docker-ops.yml +++ b/.github/workflows/docker-ops.yml @@ -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 }} diff --git a/.github/workflows/js-ops.yml b/.github/workflows/js-ops.yml index 02d740e..33fa21a 100644 --- a/.github/workflows/js-ops.yml +++ b/.github/workflows/js-ops.yml @@ -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: diff --git a/.github/workflows/npm-release-ops.yml b/.github/workflows/npm-release-ops.yml index 75ef088..e31c33c 100644 --- a/.github/workflows/npm-release-ops.yml +++ b/.github/workflows/npm-release-ops.yml @@ -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: diff --git a/.github/workflows/wp-gh-release-ops.yml b/.github/workflows/wp-gh-release-ops.yml index c27b1f7..eff2858 100644 --- a/.github/workflows/wp-gh-release-ops.yml +++ b/.github/workflows/wp-gh-release-ops.yml @@ -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'); @@ -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 }}