Bumps the ci group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-go](https://github.com/actions/setup-go) | `6.3.0` | `6.4.0` | | [fluxcd/pkg](https://github.com/fluxcd/pkg) | `1.27.0` | `1.28.0` | | [Azure/login](https://github.com/azure/login) | `2.3.0` | `3.0.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.32.6` | `4.35.1` | | [anchore/sbom-action](https://github.com/anchore/sbom-action) | `0.23.1` | `0.24.0` | | [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) | `4.1.0` | `4.1.1` | Updates `actions/setup-go` from 6.3.0 to 6.4.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](4b73464bb3...4a3601121d) Updates `fluxcd/pkg` from 1.27.0 to 1.28.0 - [Commits](9a8c0edd5d...357bbcc346) Updates `Azure/login` from 2.3.0 to 3.0.0 - [Release notes](https://github.com/azure/login/releases) - [Commits](a457da9ea1...532459ea53) Updates `github/codeql-action` from 4.32.6 to 4.35.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](0d579ffd05...c10b8064de) Updates `anchore/sbom-action` from 0.23.1 to 0.24.0 - [Release notes](https://github.com/anchore/sbom-action/releases) - [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md) - [Commits](57aae52805...e22c389904) Updates `sigstore/cosign-installer` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](ba7bc0a3fe...cad07c2e89) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: fluxcd/pkg dependency-version: 1.28.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: Azure/login dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: github/codeql-action dependency-version: 4.35.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: anchore/sbom-action dependency-version: 0.24.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: sigstore/cosign-installer dependency-version: 4.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
209 lines
8.4 KiB
YAML
209 lines
8.4 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags: ["v*"]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release-flux-cli:
|
|
outputs:
|
|
hashes: ${{ steps.slsa.outputs.hashes }}
|
|
image_url: ${{ steps.slsa.outputs.image_url }}
|
|
image_digest: ${{ steps.slsa.outputs.image_digest }}
|
|
runs-on:
|
|
group: "Default Larger Runners"
|
|
labels: ubuntu-latest-16-cores
|
|
permissions:
|
|
contents: write # needed to write releases
|
|
id-token: write # needed for keyless signing
|
|
packages: write # needed for ghcr access
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
- name: Setup Go
|
|
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
|
|
with:
|
|
go-version: 1.26.x
|
|
cache: false
|
|
- name: Setup QEMU
|
|
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
|
|
- name: Setup Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
|
|
- name: Setup Syft
|
|
uses: anchore/sbom-action/download-syft@e22c389904149dbc22b58101806040fa8d37a610 # v0.24.0
|
|
- name: Setup Cosign
|
|
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
|
|
with:
|
|
cosign-release: v2.6.1 # TODO: remove after Flux 2.8 with support for cosign v3
|
|
- name: Setup Kustomize
|
|
uses: fluxcd/pkg/actions/kustomize@357bbcc3462ccf78cc17fd0b9b7d498b1848bf14 # main
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: fluxcdbot
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
|
|
with:
|
|
username: fluxcdbot
|
|
password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }}
|
|
- name: Generate manifests
|
|
run: |
|
|
make cmd/flux/.manifests.done
|
|
./manifests/scripts/bundle.sh "" ./output manifests.tar.gz
|
|
kustomize build ./manifests/install > ./output/install.yaml
|
|
- name: Build CRDs
|
|
run: |
|
|
kustomize build manifests/crds > all-crds.yaml
|
|
- name: Generate OpenAPI JSON schemas from CRDs
|
|
uses: fluxcd/pkg/actions/crdjsonschema@357bbcc3462ccf78cc17fd0b9b7d498b1848bf14 # main
|
|
with:
|
|
crd: all-crds.yaml
|
|
output: schemas
|
|
- name: Archive the OpenAPI JSON schemas
|
|
run: |
|
|
tar -czvf ./output/crd-schemas.tar.gz -C schemas .
|
|
- name: Run GoReleaser
|
|
id: run-goreleaser
|
|
uses: goreleaser/goreleaser-action@ec59f474b9834571250b370d4735c50f8e2d1e29 # v7.0.0
|
|
with:
|
|
version: latest
|
|
args: release --skip=validate
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
AUR_BOT_SSH_PRIVATE_KEY: ${{ secrets.AUR_BOT_SSH_PRIVATE_KEY }}
|
|
- name: Generate SLSA metadata
|
|
id: slsa
|
|
env:
|
|
ARTIFACTS: "${{ steps.run-goreleaser.outputs.artifacts }}"
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
hashes=$(echo -E $ARTIFACTS | jq --raw-output '.[] | {name, "digest": (.extra.Digest // .extra.Checksum)} | select(.digest) | {digest} + {name} | join(" ") | sub("^sha256:";"")' | base64 -w0)
|
|
echo "hashes=$hashes" >> $GITHUB_OUTPUT
|
|
|
|
image_url=fluxcd/flux-cli:$GITHUB_REF_NAME
|
|
echo "image_url=$image_url" >> $GITHUB_OUTPUT
|
|
|
|
image_digest=$(docker buildx imagetools inspect ${image_url} --format '{{json .}}' | jq -r .manifest.digest)
|
|
echo "image_digest=$image_digest" >> $GITHUB_OUTPUT
|
|
|
|
release-flux-manifests:
|
|
runs-on: ubuntu-latest
|
|
needs: release-flux-cli
|
|
permissions:
|
|
id-token: write
|
|
packages: write
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Setup Kustomize
|
|
uses: fluxcd/pkg/actions/kustomize@357bbcc3462ccf78cc17fd0b9b7d498b1848bf14 # main
|
|
- name: Setup Flux CLI
|
|
uses: ./action/
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Prepare
|
|
id: prep
|
|
run: |
|
|
VERSION=$(flux version --client | awk '{ print $NF }')
|
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
|
- name: Login to GHCR
|
|
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: fluxcdbot
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
|
|
with:
|
|
username: fluxcdbot
|
|
password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }}
|
|
- name: Push manifests to GHCR
|
|
run: |
|
|
mkdir -p ./ghcr.io/flux-system
|
|
flux install --registry=ghcr.io/fluxcd \
|
|
--components-extra=image-reflector-controller,image-automation-controller \
|
|
--export > ./ghcr.io/flux-system/gotk-components.yaml
|
|
|
|
cd ./ghcr.io && flux push artifact \
|
|
oci://ghcr.io/fluxcd/flux-manifests:${{ steps.prep.outputs.version }} \
|
|
--path="./flux-system" \
|
|
--source=${{ github.repositoryUrl }} \
|
|
--revision="${{ github.ref_name }}@sha1:${{ github.sha }}"
|
|
- name: Push manifests to DockerHub
|
|
run: |
|
|
mkdir -p ./docker.io/flux-system
|
|
flux install --registry=docker.io/fluxcd \
|
|
--components-extra=image-reflector-controller,image-automation-controller \
|
|
--export > ./docker.io/flux-system/gotk-components.yaml
|
|
|
|
cd ./docker.io && flux push artifact \
|
|
oci://docker.io/fluxcd/flux-manifests:${{ steps.prep.outputs.version }} \
|
|
--path="./flux-system" \
|
|
--source=${{ github.repositoryUrl }} \
|
|
--revision="${{ github.ref_name }}@sha1:${{ github.sha }}"
|
|
- uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
|
|
with:
|
|
cosign-release: v2.6.1 # TODO: remove after Flux 2.8 with support for cosign v3
|
|
- name: Sign manifests
|
|
env:
|
|
COSIGN_EXPERIMENTAL: 1
|
|
run: |
|
|
cosign sign --yes ghcr.io/fluxcd/flux-manifests:${{ steps.prep.outputs.version }}
|
|
cosign sign --yes docker.io/fluxcd/flux-manifests:${{ steps.prep.outputs.version }}
|
|
- name: Tag manifests
|
|
run: |
|
|
flux tag artifact oci://ghcr.io/fluxcd/flux-manifests:${{ steps.prep.outputs.version }} \
|
|
--tag latest
|
|
|
|
flux tag artifact oci://docker.io/fluxcd/flux-manifests:${{ steps.prep.outputs.version }} \
|
|
--tag latest
|
|
|
|
release-provenance:
|
|
needs: [release-flux-cli]
|
|
permissions:
|
|
actions: read # for detecting the Github Actions environment.
|
|
id-token: write # for creating OIDC tokens for signing.
|
|
contents: write # for uploading attestations to GitHub releases.
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v2.1.0
|
|
with:
|
|
provenance-name: "provenance.intoto.jsonl"
|
|
base64-subjects: "${{ needs.release-flux-cli.outputs.hashes }}"
|
|
upload-assets: true
|
|
|
|
dockerhub-provenance:
|
|
needs: [release-flux-cli]
|
|
permissions:
|
|
actions: read # for detecting the Github Actions environment.
|
|
id-token: write # for creating OIDC tokens for signing.
|
|
packages: write # for uploading attestations.
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_container_slsa3.yml@v2.1.0
|
|
with:
|
|
image: ${{ needs.release-flux-cli.outputs.image_url }}
|
|
digest: ${{ needs.release-flux-cli.outputs.image_digest }}
|
|
registry-username: fluxcdbot
|
|
secrets:
|
|
registry-password: ${{ secrets.DOCKER_FLUXCD_PASSWORD }}
|
|
|
|
ghcr-provenance:
|
|
needs: [release-flux-cli]
|
|
permissions:
|
|
actions: read # for detecting the Github Actions environment.
|
|
id-token: write # for creating OIDC tokens for signing.
|
|
packages: write # for uploading attestations.
|
|
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_container_slsa3.yml@v2.1.0
|
|
with:
|
|
image: ghcr.io/${{ needs.release-flux-cli.outputs.image_url }}
|
|
digest: ${{ needs.release-flux-cli.outputs.image_digest }}
|
|
registry-username: fluxcdbot
|
|
secrets:
|
|
registry-password: ${{ secrets.GITHUB_TOKEN }}
|