Skip to content

chore(deps): bump github.com/pulumi/pulumi-terraform-bridge/pf from 0.48.0 to 0.49.0 in /provider #279

chore(deps): bump github.com/pulumi/pulumi-terraform-bridge/pf from 0.48.0 to 0.49.0 in /provider

chore(deps): bump github.com/pulumi/pulumi-terraform-bridge/pf from 0.48.0 to 0.49.0 in /provider #279

Workflow file for this run

name: Build
on:
workflow_dispatch: {}
pull_request:
paths-ignore:
- docs
- .devcontainer
- examples
jobs:
build_sdk:
name: Build SDKs ${{ matrix.language }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
dotnetversion:
- 6.0.x
goversion:
- 1.22.x
nodeversion:
- 20.x
pythonversion:
- "3.9"
language:
- nodejs
- python
- dotnet
- go
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{matrix.goversion}}
- name: Install pulumictl
uses: jaxxstorm/[email protected]
with:
repo: pulumi/pulumictl
- name: Install pulumi
uses: pulumi/actions@v6
- if: ${{ matrix.language == 'nodejs'}}
name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{matrix.nodeversion}}
registry-url: https://registry.npmjs.org
- if: ${{ matrix.language == 'dotnet'}}
name: Setup DotNet
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{matrix.dotnetversion}}
- if: ${{ matrix.language == 'python'}}
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{matrix.pythonversion}}
- if: ${{ matrix.language == 'java'}}
name: Setup Java
uses: actions/setup-java@v4
with:
cache: gradle
distribution: temurin
java-version: ${{matrix.javaversion}}
- name: Build SDK
run: make build_${{ matrix.language }}
# - name: Check worktree clean
# run: |
# git update-index -q --refresh
# if ! git diff-files --quiet; then
# >&2 echo "error: working tree is not clean, aborting!"
# git status
# git diff
# exit 1
# fi