mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-09 09:17:27 +00:00
Bumps the ci group with 3 updates: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `docker/setup-buildx-action` from 3.2.0 to 3.3.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](2b51285047...d70bba72b1) Updates `sigstore/cosign-installer` from 3.4.0 to 3.5.0 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](e1523de757...59acb6260d) Updates `peter-evans/create-pull-request` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](70a41aba78...c55203cfde) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: sigstore/cosign-installer dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
108 lines
3.8 KiB
YAML
108 lines
3.8 KiB
YAML
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@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
cache-dependency-path: |
|
|
**/go.sum
|
|
**/go.mod
|
|
- name: Update component versions
|
|
id: update
|
|
run: |
|
|
PR_BODY=$(mktemp)
|
|
|
|
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
|
|
echo "- $1 to ${LATEST_VERSION}" >> $PR_BODY
|
|
echo " https://github.com/fluxcd/$1/blob/${LATEST_VERSION}/CHANGELOG.md" >> $PR_BODY
|
|
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
|
|
# NB: this may look strange but it is the way it should be done to
|
|
# maintain our precious newlines
|
|
# Ref: https://github.com/github/docs/issues/21529
|
|
echo 'pr_body<<EOF' >> $GITHUB_OUTPUT
|
|
cat $PR_BODY >> $GITHUB_OUTPUT
|
|
echo 'EOF' >> $GITHUB_OUTPUT
|
|
}
|
|
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@c55203cfde3e5c11a452d352b4393e68b85b4533 # v6.0.3
|
|
with:
|
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
commit-message: |
|
|
Update toolkit components
|
|
|
|
${{ steps.update.outputs.pr_body }}
|
|
committer: GitHub <noreply@github.com>
|
|
author: fluxcdbot <fluxcdbot@users.noreply.github.com>
|
|
signoff: true
|
|
branch: update-components
|
|
title: Update toolkit components
|
|
body: |
|
|
${{ steps.update.outputs.pr_body }}
|
|
labels: |
|
|
dependencies
|
|
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 }}"
|