Skip to content

Bump github.com/pulumi/pulumi/sdk/v3 from 3.111.1 to 3.116.0 in /provider #422

Bump github.com/pulumi/pulumi/sdk/v3 from 3.111.1 to 3.116.0 in /provider

Bump github.com/pulumi/pulumi/sdk/v3 from 3.111.1 to 3.116.0 in /provider #422

Workflow file for this run

# This GitHub action runs your tests for each commit push and/or PR.
name: Tests
on:
pull_request:
paths-ignore:
- "README.md"
push:
paths-ignore:
- "README.md"
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: "provider/go.mod"
cache-dependency-path: |
provider/go.sum
sdk/go.sum
- name: Install pulumictl
uses: jaxxstorm/action-install-gh-release@v1.11.0
with:
repo: pulumi/pulumictl
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Setup DotNet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.301
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: tfgen
run: |
make tfgen
- run: make build_sdks
- name: git diff
run: |
git diff --compact-summary --exit-code || \
(echo; echo "Unexpected difference in directories after code generation."; exit 1)