Compare commits

...

9 Commits

Author SHA1 Message Date
Bryce Lampe
29431eefde stringify 2025-08-07 11:17:20 -07:00
Bryce Lampe
1d7d3b447f fix object 2025-08-07 11:14:58 -07:00
Bryce Lampe
f384829abb fix env var 2025-08-07 11:11:48 -07:00
Bryce Lampe
3b76f3d5e5 nope use this one 2025-08-07 11:04:30 -07:00
Bryce Lampe
436e66e4a9 take an output 2025-08-07 11:01:59 -07:00
Bryce Lampe
30192b76c7 try a different workflow 2025-08-07 10:56:09 -07:00
Bryce Lampe
52f62c4608 testing 2025-08-07 10:53:41 -07:00
Pulumi Bot
3bca7cb8c7 Update GitHub Actions workflows. (#564)
This PR was automatically generated by the
update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt
repo, from commit b3ee77fa5b79734c33e2a074744b4f5873e72478.
2025-08-06 05:52:02 +00:00
Pulumi Bot
3a50555d36 Update GitHub Actions workflows. (#563)
This PR was automatically generated by the
update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt
repo, from commit a94a4e21904c11dcb4a6d42bed9806407ac2cdad.
2025-07-26 05:49:46 +00:00
3 changed files with 16 additions and 0 deletions

View File

@@ -38,3 +38,5 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
loglevel: DEBUG
# Set dry-run to true to not perform label or close actions.
dry-run: true

View File

@@ -71,6 +71,17 @@ jobs:
runs-on: ubuntu-latest
name: prerequisites
steps:
- name: fromJSON operates on outputs
id: setup
shell: bash
run: |
echo 'JSON={"FOO": "BAR", "FOO": "BAZ"}' >> "$GITHUB_OUTPUT"
- name: Testing duplicate JSON key behavior
shell: bash
run: |
echo "${{ toJSON(fromJSON(steps.setup.outputs.JSON)) }}"
- name: Checkout Repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:

View File

@@ -14,3 +14,6 @@ java = 'corretto-11'
pulumi = 'latest'
"go:github.com/pulumi/pulumictl/cmd/pulumictl" = 'latest'
gradle = '7.6'
[settings]
experimental = true # Required for Go binaries (e.g. pulumictl).