mirror of
https://github.com/kubescape/kubescape.git
synced 2026-02-14 18:09:55 +00:00
Bumps [github.com/containerd/containerd/v2](https://github.com/containerd/containerd) from 2.0.5 to 2.0.7. - [Release notes](https://github.com/containerd/containerd/releases) - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md) - [Commits](https://github.com/containerd/containerd/compare/v2.0.5...v2.0.7) --- updated-dependencies: - dependency-name: github.com/containerd/containerd/v2 dependency-version: 2.0.7 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: build-image
|
|
permissions: read-all
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
CLIENT:
|
|
required: false
|
|
type: string
|
|
default: "test"
|
|
IMAGE_TAG:
|
|
required: true
|
|
type: string
|
|
CO_SIGN:
|
|
type: boolean
|
|
required: false
|
|
default: false
|
|
PLATFORMS:
|
|
type: boolean
|
|
required: false
|
|
default: false
|
|
jobs:
|
|
build-http-image:
|
|
permissions:
|
|
id-token: write
|
|
packages: write
|
|
contents: write
|
|
pull-requests: read
|
|
uses: kubescape/workflows/.github/workflows/incluster-comp-pr-merged.yaml@main
|
|
with:
|
|
IMAGE_NAME: quay.io/${{ github.repository_owner }}/kubescape
|
|
IMAGE_TAG: ${{ inputs.IMAGE_TAG }}
|
|
COMPONENT_NAME: kubescape
|
|
CGO_ENABLED: 0
|
|
GO111MODULE: "on"
|
|
BUILD_PLATFORM: ${{ inputs.PLATFORMS && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
|
|
GO_VERSION: "1.25"
|
|
REQUIRED_TESTS: '[]'
|
|
COSIGN: ${{ inputs.CO_SIGN }}
|
|
HELM_E2E_TEST: false
|
|
FORCE: true
|
|
secrets: inherit
|