https://pulumi.com logo
#general
Title
# general
p

proud-art-41399

09/26/2022, 9:30 AM
Hi, I'm using Pulumi GitHub Actions during the CI workflow. Recently I wanted to debug an issue and found out that the action doesn't produce any output in the GHA workflow log (see the screenshot). The
pulumi/actions@v3
parameters are as follows:
Copy code
with:
    command: up
    refresh: true
    stack-name: ***
    work-dir: infra
    cloud-url: s3://***
    comment-on-pr: false
    github-token: ***
    parallel: 2147483647
    target-dependents: false
    upsert: false
    edit-pr-comment: true
    pulumi-version: ^3
    color: auto
  env:
    AWS_DEFAULT_REGION: ***
    AWS_REGION: ***
    AWS_ACCESS_KEY_ID: ***
    AWS_SECRET_ACCESS_KEY: ***
    AWS_SESSION_TOKEN: ***
    pythonLocation: /opt/hostedtoolcache/Python/3.8.13/x64
    PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.8.13/x64/lib/pkgconfig
    Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.13/x64
    Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.13/x64
    Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.8.13/x64
    LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.8.13/x64/lib
    PULUMI_CONFIG_PASSPHRASE: ***
I was able to track this down to happen somewhere between Pulumi CLI v3.39.1 (produces output) and v3.39.3 (doesn't produce output). I looked at release notes (https://github.com/pulumi/pulumi/releases) but couldn't find anything relevant. It happens both for Pulumi programs written in Python and TypeScript, if that is important. Anyone has a clue what to try next?
b

bulky-rose-70012

09/29/2022, 6:33 AM
Ddi you manage to find a fix for this?
p

proud-art-41399

09/29/2022, 6:36 AM
Pinning action to v3.19.0 seems to fix this. Check out the GH issue.
b

bulky-rose-70012

09/29/2022, 6:37 AM
Thanks!
4 Views