name: update on: workflow_dispatch: schedule: - cron: "0 * * * *" push: branches: [main] permissions: contents: read jobs: update-components: runs-on: ubuntu-latest permissions: contents: write pull-requests: write steps: - name: Check out code uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c - name: Setup Go uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 with: go-version: 1.19.x - name: Update component versions id: update run: | PR_BODY="" bump_version() { local LATEST_VERSION=$(curl -s https://api.github.com/repos/fluxcd/$1/releases | jq -r 'sort_by(.published_at) | .[-1] | .tag_name') local CTRL_VERSION=$(sed -n "s/.*$1\/releases\/download\/\(.*\)\/.*/\1/p;n" manifests/bases/$1/kustomization.yaml) local CRD_VERSION=$(sed -n "s/.*$1\/releases\/download\/\(.*\)\/.*/\1/p" manifests/crds/kustomization.yaml) local MOD_VERSION=$(go list -m -f '{{ .Version }}' "github.com/fluxcd/$1/api") local changed=false if [[ "${CTRL_VERSION}" != "${LATEST_VERSION}" ]]; then sed -i "s/\($1\/releases\/download\/\)v.*\(\/.*\)/\1${LATEST_VERSION}\2/g" "manifests/bases/$1/kustomization.yaml" changed=true fi if [[ "${CRD_VERSION}" != "${LATEST_VERSION}" ]]; then sed -i "s/\($1\/releases\/download\/\)v.*\(\/.*\)/\1${LATEST_VERSION}\2/g" "manifests/crds/kustomization.yaml" changed=true fi if [[ "${MOD_VERSION}" != "${LATEST_VERSION}" ]]; then go mod edit -require="github.com/fluxcd/$1/api@${LATEST_VERSION}" make tidy changed=true fi if [[ "$changed" == true ]]; then PR_BODY="$PR_BODY- $1 to ${LATEST_VERSION}%0A https://github.com/fluxcd/$1/blob/${LATEST_VERSION}/CHANGELOG.md%0A" fi } { # bump controller versions bump_version helm-controller bump_version kustomize-controller bump_version source-controller bump_version notification-controller bump_version image-reflector-controller bump_version image-automation-controller # diff change git diff # export PR_BODY for PR and commit echo "::set-output name=pr_body::$PR_BODY" } - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4 with: token: ${{ secrets.BOT_GITHUB_TOKEN }} commit-message: | Update toolkit components ${{ steps.update.outputs.pr_body }} committer: GitHub author: fluxcdbot signoff: true branch: update-components title: Update toolkit components body: | ${{ steps.update.outputs.pr_body }} labels: | area/build reviewers: ${{ secrets.ASSIGNEES }} - name: Check output run: | echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"