upgrade-cdktf #1627
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-cdktf | |
on: | |
schedule: | |
- cron: 13 */6 * * 1-5 | |
workflow_dispatch: {} | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
check_versions: | |
name: Check CDKTF versions | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: "18" | |
- name: Install | |
run: yarn install | |
- name: Get current CDKTF version | |
id: current_version | |
# NOTE: This uses the version in projenrc.template.js as the source of truth (and not the version of cdktf in the repo-manager's package.json) | |
run: |- | |
OLD_VERSION=$(sed -nE 's/cdktfVersion: "\^(.*)",/\1/p' projenrc.template.js | xargs) | |
OLD_VERSION_MINOR=$(cut -d "." -f 2 <<< "$OLD_VERSION") | |
echo "value=$OLD_VERSION" >> $GITHUB_OUTPUT | |
echo "short=$OLD_VERSION_MINOR" >> $GITHUB_OUTPUT | |
- name: Get latest CDKTF version | |
id: latest_version | |
run: |- | |
CDKTF_VERSION=$(yarn info cdktf --json | jq -r '.data.version') | |
CDKTF_VERSION_MINOR=$(cut -d "." -f 2 <<< "$CDKTF_VERSION") | |
CONSTRUCTS_VERSION=$(yarn info cdktf --json | jq -r '.data.peerDependencies.constructs') | |
CONSTRUCTS_VERSION_EXACT=$(cut -d "^" -f 2 <<< "$CONSTRUCTS_VERSION") | |
echo "value=$CDKTF_VERSION" >> $GITHUB_OUTPUT | |
echo "short=$CDKTF_VERSION_MINOR" >> $GITHUB_OUTPUT | |
echo "constructs=$CONSTRUCTS_VERSION_EXACT" >> $GITHUB_OUTPUT | |
outputs: | |
current_version: ${{ steps.current_version.outputs.value }} | |
current_version_minor: ${{ steps.current_version.outputs.short }} | |
latest_version: ${{ steps.latest_version.outputs.value }} | |
latest_version_minor: ${{ steps.latest_version.outputs.short }} | |
constructs: ${{ steps.latest_version.outputs.constructs }} | |
upgrade_repos: | |
name: Upgrade CDKTF in prebuilt provider repos | |
runs-on: ubuntu-latest | |
needs: [check_versions] | |
if: needs.check_versions.outputs.current_version_minor != needs.check_versions.outputs.latest_version_minor | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Do the upgrade | |
run: | | |
sed -i "s/cdktfVersion: \".*\",/cdktfVersion: \"^$NEW_CDKTF_VERSION\",/" ./projenrc.template.js | |
sed -i "s/constructsVersion: \".*\",/constructsVersion: \"^$CONSTRUCTS_VERSION\",/" ./projenrc.template.js | |
env: | |
NEW_CDKTF_VERSION: ${{ needs.check_versions.outputs.latest_version }} | |
CONSTRUCTS_VERSION: ${{ needs.check_versions.outputs.constructs }} | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6 | |
with: | |
branch: auto/upgrade-providers-cdktf-${{ needs.check_versions.outputs.latest_version_minor }} | |
base: main | |
commit-message: "feat!: upgrade providers to CDKTF version ${{ needs.check_versions.outputs.latest_version }}" | |
title: "feat!: upgrade providers to CDKTF version ${{ needs.check_versions.outputs.latest_version }}" | |
body: This PR upgrades CDKTF from version `${{ needs.check_versions.outputs.current_version }}` to version `${{ needs.check_versions.outputs.latest_version }}` in the prebuilt providers managed by this project. | |
labels: automated | |
token: ${{ secrets.GH_TOKEN_ACTIONS_UPDATER }} | |
author: team-tf-cdk <[email protected]> | |
committer: team-tf-cdk <[email protected]> | |
signoff: true | |
delete-branch: true | |
outputs: | |
pr_id: ${{ steps.cpr.outputs.pull-request-number }} | |
upgrade_self: | |
name: Upgrade CDKTF in repository-manager | |
runs-on: ubuntu-latest | |
needs: [check_versions, upgrade_repos] | |
if: needs.check_versions.outputs.current_version_minor != needs.check_versions.outputs.latest_version_minor | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Node.js | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 | |
with: | |
node-version: "18" | |
- name: Install | |
run: yarn install | |
- name: Do the upgrade | |
run: | | |
yarn add cdktf@^$NEW_CDKTF_VERSION | |
yarn add cdktf-cli@^$NEW_CDKTF_VERSION | |
yarn add constructs@^$CONSTRUCTS_VERSION | |
env: | |
NEW_CDKTF_VERSION: ${{ needs.check_versions.outputs.latest_version }} | |
CONSTRUCTS_VERSION: ${{ needs.check_versions.outputs.constructs }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6 | |
with: | |
branch: auto/upgrade-self-cdktf-${{ needs.check_versions.outputs.latest_version_minor }} | |
base: main | |
commit-message: "chore: upgrade self to cdktf ${{ needs.check_versions.outputs.latest_version }}" | |
title: "chore: upgrade self to cdktf ${{ needs.check_versions.outputs.latest_version }}" | |
body: | | |
This PR upgrades CDKTF to version `${{ needs.check_versions.outputs.latest_version }}` in `cdktf-repository-manager` (this repo). | |
Unfortunately, not everything can be automated, and the following steps need to be completed manually: | |
- [ ] Wait for #${{ needs.upgrade_repos.outputs.pr_id }} to be merged and for the deployment to succeed | |
- [ ] Upgrade `@cdktf/provider-github` to a version compatible with `cdktf@${{ needs.check_versions.outputs.latest_version }}` (`yarn add ...`) | |
Please checkout this PR, complete the above steps, push the changes to this branch, and then mark this PR as ready for review to complete the upgrade. Thanks! | |
labels: automerge,automated,dependencies | |
token: ${{ secrets.GH_TOKEN_ACTIONS_UPDATER }} | |
author: team-tf-cdk <[email protected]> | |
committer: team-tf-cdk <[email protected]> | |
signoff: true | |
delete-branch: true | |
draft: true |