Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
10 changes: 5 additions & 5 deletions .github/workflows/auto-pull-request-by-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.24.11'

- name: Install pulumictl
uses: jaxxstorm/action-install-gh-release@v1.5.0
Expand All @@ -25,22 +25,22 @@ jobs:
- name: Install Pulumi CLI
uses: pulumi/action-install-pulumi-cli@v2.0.0
with:
pulumi-version: 3.117.0
pulumi-version: 3.210.0

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 21.X
node-version: 22.3.0

- name: Setup DotNet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.408
dotnet-version: 6.0.418

- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: 3.13

- name: generate-code
id: generate-code
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Pulumi CLI
uses: pulumi/action-install-pulumi-cli@v2.0.0
with:
pulumi-version: 3.117.0
pulumi-version: 3.210.0
- name: Setup Node
uses: actions/setup-node@v1
with:
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Check worktree clean
run: |
git update-index -q --refresh
if ! git diff-files --quiet; then
if ! git diff-files --quiet --ignore-space-at-eol; then
>&2 echo "error: working tree is not clean, aborting!"
git status
git diff
Expand All @@ -55,15 +55,15 @@ jobs:
fail-fast: true
matrix:
dotnetversion:
- 6.0.408
- 6.0.418
goversion:
- 1.21.x
- 1.24.11
language:
- nodejs
- python
- dotnet
- go
nodeversion:
- 18.x
- 22.3.0
pythonversion:
- "3.9"
- "3.13"
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
fail-fast: true
matrix:
goversion:
- 1.21.x
- 1.24.11
publish_sdk:
name: Publish SDKs
runs-on: ubuntu-20.04
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Install Pulumi CLI
uses: pulumi/action-install-pulumi-cli@v2.0.0
with:
pulumi-version: 3.117.0
pulumi-version: 3.210.0
- name: Setup Node
uses: actions/setup-node@v1
with:
Expand Down Expand Up @@ -117,15 +117,15 @@ jobs:
fail-fast: true
matrix:
dotnetversion:
- 6.0.408
- 6.0.418
goversion:
- 1.21.x
- 1.24.11
language:
- nodejs
- python
- dotnet
- go
nodeversion:
- 18.x
- 22.3.0
pythonversion:
- "3.9"
- "3.13"
Loading