fix(deps): update dependency @pulumi/pulumi to v3.219.0 #580
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull Request | |
| on: | |
| merge_group: | |
| pull_request: | |
| paths-ignore: | |
| - '01-teams/**' | |
| - '02-repositories/**' | |
| - '03-members/**' | |
| - '.github/workflows/provider-*.yaml' | |
| pull_request_target: | |
| paths: | |
| - '01-teams/**' | |
| - '02-repositories/**' | |
| - '03-members/**' | |
| jobs: | |
| preview-changes: | |
| name: Preview changes | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout code when the event is `pull_request` | |
| - name: Checkout code | |
| if: github.event_name == 'pull_request' | |
| uses: actions/checkout@v6 | |
| # Checkout code when the event is `pull_request_target` | |
| - name: Checkout code | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: '${{ github.event.pull_request.merge_commit_sha }}' | |
| - uses: volta-cli/action@v4 | |
| - run: npm ci | |
| - uses: pulumi/[email protected] | |
| env: | |
| PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
| with: | |
| command: preview | |
| stack-name: pulumiverse/prod | |
| pulumi-version: 3.216.0 # must be aligned with version used in package.json |