Switch to old provider version #22
Workflow file for this run
This file contains 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: Upgrade provider | |
on: | |
workflow_dispatch: | |
# TODO: remove this | |
push: | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
upgrade_provider: | |
name: upgrade-provider | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: write | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
- name: Install pulumictl | |
uses: jaxxstorm/action-install-gh-release@v1.10.0 | |
with: | |
repo: pulumi/pulumictl | |
- name: Install Pulumi CLI | |
uses: pulumi/actions@v4 | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref_name }} | |
- name: Unshallow clone for tags | |
run: git fetch --prune --unshallow --tags | |
shell: bash | |
- name: Install upgrade-provider | |
run: go install github.com/pulumi/upgrade-provider@176a45cf2471d5fccd6235c385ba1ec17b74a37f | |
shell: bash | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: "7.6" | |
- name: "Set up git identity: name" | |
run: git config --global user.name 'vavsab' | |
shell: bash | |
- name: Run upgrade-provider | |
run: | | |
upgrade-provider "$REPO" --kind="provider" --target-bridge-version="latest" --pr-reviewers="vavsab" --pr-description="example" | |
shell: bash | |
env: | |
GH_TOKEN: ${{ env.GH_TOKEN }} | |
REPO: ${{ github.repository }} |