bump go-logger #126
Workflow file for this run
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: build | |
on: | |
pull_request_target: | |
types: [closed] | |
branches: | |
- 'main' | |
paths-ignore: | |
- '**.md' ### Ignore running when README.MD changed. | |
- '.github/workflows/*' ### Ignore running when files under path: .github/workflows/* changed. | |
jobs: | |
pr-merged: | |
if: ${{ github.event.pull_request.merged == true }} ## Skip if not merged | |
uses: kubescape/workflows/.github/workflows/incluster-comp-pr-merged.yaml@main | |
with: | |
IMAGE_NAME: quay.io/${{ github.repository_owner }}/storage | |
IMAGE_TAG: v0.0.${{ github.run_number }} | |
COMPONENT_NAME: storage | |
CGO_ENABLED: 0 | |
GO111MODULE: "on" | |
BUILD_PLATFORM: linux/amd64,linux/arm64 | |
GO_VERSION: "1.23" | |
REQUIRED_TESTS: '[ | |
"relevantCVEs", | |
"relevancy_enabled_stop_sniffing", | |
"relevant_data_is_appended", | |
"relevancy_large_image", | |
"relevancy_extra_large_image", | |
"relevancy_fix_vuln", | |
"relevancy_python", | |
"relevancy_golang", | |
"relevancy_java", | |
"relevancy_java_and_python", | |
"relevancy_golang_dynamic", | |
"network_policy", | |
"network_policy_data_appended", | |
"network_policy_pod_restarted", | |
"network_policy_multiple_replicas", | |
"network_policy_known_servers" | |
]' | |
COSIGN: true | |
HELM_E2E_TEST: true | |
secrets: inherit |