Hi, I'm using Pulumi GitHub Actions during the CI ...
# general
p
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
Ddi you manage to find a fix for this?
p
Pinning action to v3.19.0 seems to fix this. Check out the GH issue.
b
Thanks!