weekly-pulumi-update #132
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
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt | |
name: weekly-pulumi-update | |
on: | |
schedule: | |
- cron: 35 12 * * 4 | |
workflow_dispatch: {} | |
env: | |
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} | |
PROVIDER: aws-native | |
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | |
PULUMI_LOCAL_NUGET: ${{ github.workspace }}/nuget | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NUGET_PUBLISH_KEY: ${{ secrets.NUGET_PUBLISH_KEY }} | |
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
TRAVIS_OS_NAME: linux | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
PULUMI_GO_DEP_ROOT: ${{ github.workspace }}/.. | |
PUBLISH_REPO_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
PUBLISH_REPO_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} | |
SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} | |
SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} | |
GOVERSION: 1.21.x | |
NODEVERSION: 16.x | |
PYTHONVERSION: "3.7" | |
DOTNETVERSION: | | |
6.0.x | |
3.1.301 | |
JAVAVERSION: "11" | |
AWS_REGION: us-west-2 | |
PULUMI_API: https://api.pulumi-staging.io | |
jobs: | |
weekly-pulumi-update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: Unshallow clone for tags | |
run: git fetch --prune --unshallow --tags | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GOVERSION }} | |
- 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: Setup DotNet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNETVERSION }} | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.NODEVERSION }} | |
registry-url: https://registry.npmjs.org | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ env.PYTHONVERSION }} | |
- name: Update Pulumi/Pulumi | |
id: gomod | |
run: >- | |
git config --local user.email 'bot@pulumi.com' | |
git config --local user.name 'pulumi-bot' | |
git checkout -b update-pulumi/${{ github.run_id }}-${{ github.run_number }} | |
cd provider | |
go get github.com/pulumi/pulumi/pkg/v3 | |
go get github.com/pulumi/pulumi/sdk/v3 | |
go mod download | |
go mod tidy | |
cd ../sdk | |
go get github.com/pulumi/pulumi/sdk/v3 | |
go mod download | |
go mod tidy | |
cd .. | |
git update-index -q --refresh | |
if ! git diff-files --quiet; then | |
echo ::set-output name=changes::1 | |
fi | |
- name: Initialize submodules | |
run: make init_submodules | |
- name: Provider with Pulumi Upgrade | |
if: steps.gomod.outputs.changes != 0 | |
run: >- | |
make codegen && make local_generate | |
git add sdk/nodejs | |
git commit -m "Regenerating Node.js SDK based on updated modules" || echo "ignore commit failure, may be empty" | |
git add sdk/python | |
git commit -m "Regenerating Python SDK based on updated modules" || echo "ignore commit failure, may be empty" | |
git add sdk/dotnet | |
git commit -m "Regenerating .NET SDK based on updated modules" || echo "ignore commit failure, may be empty" | |
git add sdk/go* | |
git commit -m "Regenerating Go SDK based on updated modules" || echo "ignore commit failure, may be empty" | |
git add sdk/java* | |
git commit -m "Regenerating Java SDK based on updated modules" || echo "ignore commit failure, may be empty" | |
git add . | |
git commit -m "Updated modules" || echo "ignore commit failure, may be empty" | |
git push origin update-pulumi/${{ github.run_id }}-${{ github.run_number }} | |
- name: Create PR | |
id: create-pr | |
if: steps.gomod.outputs.changes != 0 | |
uses: repo-sync/pull-request@v2.6.2 | |
with: | |
source_branch: update-pulumi/${{ github.run_id }}-${{ github.run_number }} | |
destination_branch: master | |
pr_title: Automated Pulumi/Pulumi upgrade | |
github_token: ${{ secrets.PULUMI_BOT_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} | |
name: weekly-pulumi-update |