Heyo, anyone know how to fix issues with `pulumi u...
# general
g
Heyo, anyone know how to fix issues with
pulumi up
in github actions? Works fine locally for me, but it just hangs forever until it times out in github actions:
Copy code
Run pulumi/actions@v6
  with:
    command: up
    stack-name: prod
    work-dir: infrastructure/pulumi
    comment-on-pr: false
    comment-on-summary: false
    github-token: ***
    expect-no-changes: false
    diff: false
    target-dependents: false
    refresh: false
    upsert: false
    remove: false
    edit-pr-comment: true
    color: auto
    exclude-protected: false
    suppress-outputs: false
    suppress-progress: false
    always-include-summary: false
    continue-on-error: false
  env:
    AWS_REGION: us-east-1
    ECR_REPOSITORY: lekondo/denim
    AWS_DEFAULT_REGION: us-east-1
    AWS_ACCESS_KEY_ID: ***
    AWS_SECRET_ACCESS_KEY: ***
    AWS_SESSION_TOKEN: ***
    IMAGE_TAG: <redacted>
    PULUMI_ACCESS_TOKEN: ***
    AWS_ACCOUNT_ID: ***
    APP_ENV: prod
    ALLOWED_ORIGINS: <redacted>
    AUTH0_DOMAIN: <redacted>
    AUTH0_AUDIENCE: <redacted>
    AUTH0_TENANT_DOMAIN: <redacted>
    RUNPOD_API_URL: <redacted>
    VERBOSE_LOGGING: false
    DOMAIN_NAME: <redacted>
    CLOUDFLARE_API_TOKEN: ***
Configured range: 
/usr/local/bin/pulumi version
v3.163.0
warning: A new version of Pulumi is available. To upgrade from version '3.163.0' to '3.165.0', visit <https://pulumi.com/docs/install/> for manual instructions and release notes.
Pulumi version 3.163.0 is already installed on this machine. Skipping download
Logging into the Pulumi Cloud backend.
pulumi up on prod
  Updating (prod)
  
  
  View Live: <https://app.pulumi.com/mover/lekondo-denim/prod/updates/17>
  
  
  @ Updating....
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  .
  
  Downloading plugin cloudflare-6.1.1: starting
  
  Downloading plugin aws-6.66.3: starting
  
  @ Updating....
  
  Downloading plugin cloudflare-6.1.1: done
  
  Installing plugin cloudflare-6.1.1: starting
  
  Installing plugin cloudflare-6.1.1: done
  
  @ Updating....
  .
  
  Downloading plugin aws-6.66.3: done
  
  Installing plugin aws-6.66.3: starting
  
  @ Updating....
  .
  .
  
  Installing plugin aws-6.66.3: done
  
  
  
  @ Updating....
  .
  .
  .
  .
  .
  .
It does like 500 lines of periods, and the pulumi cloud update just fails with 0 logs
My action yaml:
Copy code
- name: Run Pulumi Up
        uses: pulumi/actions@v6 # Use the action directly
        id: pulumi-up
        with:
          command: up # Run pulumi up (action handles non-interactive)
          stack-name: prod # Specify the stack name
          work-dir: infrastructure/pulumi # Specify the working directory
          pulumi-version: latest # Ensure latest Pulumi CLI is used
          # Pulumi action automatically exports stack outputs
        env:
          PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
        <lots of other env vars>
m
hi @gray-jewelry-75640, thanks for reporting. let me check with engineering.