diff --git a/.github/actions/create-pull-request/action.yml b/.github/actions/create-pull-request/action.yml index 9e7f6346a7..6a6b6dbf03 100644 --- a/.github/actions/create-pull-request/action.yml +++ b/.github/actions/create-pull-request/action.yml @@ -32,7 +32,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Creates a Pull Request' if: "inputs.dry-run != 'true'" env: diff --git a/.github/actions/post-coverage-comment/action.yml b/.github/actions/post-coverage-comment/action.yml index 4622f2c68a..a458b9e34c 100644 --- a/.github/actions/post-coverage-comment/action.yml +++ b/.github/actions/post-coverage-comment/action.yml @@ -29,7 +29,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Prepare Coverage Comment' id: 'prep_coverage_comment' shell: 'bash' diff --git a/.github/actions/publish-release/action.yml b/.github/actions/publish-release/action.yml index cb82415a3a..ce9a2e4f0c 100644 --- a/.github/actions/publish-release/action.yml +++ b/.github/actions/publish-release/action.yml @@ -57,7 +57,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: '👤 Configure Git User' working-directory: '${{ inputs.working-directory }}' diff --git a/.github/actions/push-docker/action.yml b/.github/actions/push-docker/action.yml index 3b6280e248..2589601a97 100644 --- a/.github/actions/push-docker/action.yml +++ b/.github/actions/push-docker/action.yml @@ -20,7 +20,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Checkout' uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4 with: diff --git a/.github/actions/push-sandbox/action.yml b/.github/actions/push-sandbox/action.yml index f867927ba3..24669f421d 100644 --- a/.github/actions/push-sandbox/action.yml +++ b/.github/actions/push-sandbox/action.yml @@ -30,7 +30,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Checkout' uses: 'actions/checkout@v4' with: diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index ecad7f0707..2f5c0de140 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -15,7 +15,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Run Tests' env: GEMINI_API_KEY: '${{ inputs.gemini_api_key }}' diff --git a/.github/actions/tag-npm-release/action.yml b/.github/actions/tag-npm-release/action.yml index cc67a4fe06..08b4522c49 100644 --- a/.github/actions/tag-npm-release/action.yml +++ b/.github/actions/tag-npm-release/action.yml @@ -23,7 +23,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Setup Node.js' uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' diff --git a/.github/actions/verify-release/action.yml b/.github/actions/verify-release/action.yml index a4387f04a0..0e138b78b2 100644 --- a/.github/actions/verify-release/action.yml +++ b/.github/actions/verify-release/action.yml @@ -23,7 +23,9 @@ runs: steps: - name: '📝 Print Inputs' shell: 'bash' - run: 'echo "${{ toJSON(inputs) }}"' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Checkout' uses: 'actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955' # ratchet:actions/checkout@v4 diff --git a/.github/workflows/release-manual.yml b/.github/workflows/release-manual.yml index 299dfaae7b..61bbe2d4dc 100644 --- a/.github/workflows/release-manual.yml +++ b/.github/workflows/release-manual.yml @@ -65,7 +65,10 @@ jobs: fetch-depth: 0 - name: 'Debug Inputs' - run: 'echo "${{ toJSON(inputs) }}"' + shell: 'bash' + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Setup Node.js' uses: 'actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020' diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index f3f3ef4745..72858fc8fa 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -53,8 +53,10 @@ jobs: run: 'npm ci' - name: 'Print Inputs' - run: | - echo "${{ toJSON(github.event.inputs) }}" + shell: 'bash' + env: + JSON_INPUTS: '${{ toJSON(github.event.inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Run Tests' if: "${{ github.event_name == 'schedule' || github.event.inputs.force_skip_tests == 'false' }}" diff --git a/.github/workflows/release-patch-3-release.yml b/.github/workflows/release-patch-3-release.yml index 8238afa206..f6397b283f 100644 --- a/.github/workflows/release-patch-3-release.yml +++ b/.github/workflows/release-patch-3-release.yml @@ -63,8 +63,9 @@ jobs: - name: 'Print Inputs' shell: 'bash' - run: |- - echo "${{ toJSON(inputs) }}" + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Get Patch Version' id: 'patch_version' diff --git a/.github/workflows/release-promote.yml b/.github/workflows/release-promote.yml index b2d091eb7e..f54925f438 100644 --- a/.github/workflows/release-promote.yml +++ b/.github/workflows/release-promote.yml @@ -59,8 +59,9 @@ jobs: - name: 'Print Inputs' shell: 'bash' - run: |- - echo "${{ toJSON(inputs) }}" + env: + JSON_INPUTS: '${{ toJSON(inputs) }}' + run: 'echo "$JSON_INPUTS"' - name: 'Calculate Versions and SHAs' id: 'versions'