ci: Add checkout and setup-go actions to build-publish-image #13
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: Create, Scan and Publish KDM image | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
- release-** | |
types: [ closed ] | |
permissions: | |
contents: write | |
packages: write | |
env: | |
REGISTRY: ghcr.io | |
GO_VERSION: '1.20' | |
IMAGE_NAME: 'kdm' | |
jobs: | |
export-registry: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'update manifest and helm charts') | |
runs-on: ubuntu-20.04 | |
outputs: | |
registry: ${{ steps.export.outputs.registry }} | |
steps: | |
- id: export | |
run: | | |
# registry must be in lowercase | |
echo "registry=$(echo "${{ env.REGISTRY }}/${{ github.repository }}" | tr [:upper:] [:lower:])" >> $GITHUB_OUTPUT | |
publish-images: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'update manifest and helm charts') | |
needs: | |
- export-registry | |
env: | |
REGISTRY: ${{ needs.export-registry.outputs.registry }} | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- id: get-tag | |
name: Get tag | |
run: echo "tag=$(echo ${{ github.event.pull_request.head.ref }} | tr -d release-)" >> $GITHUB_OUTPUT | |
- name: Create tag | |
run: | | |
git tag ${{ steps.get-tag.outputs.tag }} | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
ref: ${{ steps.get-tag.outputs.tag }} | |
- name: Login to ${{ env.REGISTRY }} | |
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set Image tag | |
run: | | |
ver=${{ steps.get-tag.outputs.tag }} | |
echo "IMG_TAG=${ver#"v"}" >> $GITHUB_ENV | |
- name: Build image | |
run: | | |
OUTPUT_TYPE=type=docker make docker-build-kdm | |
env: | |
VERSION: ${{ env.IMG_TAG }} | |
- name: Scan ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMG_TAG }} | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMG_TAG }} | |
format: 'table' | |
exit-code: '1' | |
ignore-unfixed: true | |
vuln-type: 'os,library' | |
severity: 'CRITICAL,HIGH' | |
timeout: '5m0s' | |
env: | |
TRIVY_USERNAME: ${{ github.actor }} | |
TRIVY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push image | |
run: | | |
OUTPUT_TYPE=type=registry make docker-build-kdm | |
env: | |
VERSION: ${{ env.IMG_TAG }} |