mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-11-01 04:49:55 +00:00
276d30ad75
Bumps [crazy-max/ghaction-docker-meta](https://github.com/crazy-max/ghaction-docker-meta) from 4 to 5. - [Release notes](https://github.com/crazy-max/ghaction-docker-meta/releases) - [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md) - [Commits](https://github.com/crazy-max/ghaction-docker-meta/compare/v4...v5) --- updated-dependencies: - dependency-name: crazy-max/ghaction-docker-meta dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
105 lines
3.8 KiB
YAML
105 lines
3.8 KiB
YAML
---
|
|
name: Publish
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
env:
|
|
ALIAS: aquasecurity
|
|
DOCKERHUB_ALIAS: aquasec
|
|
REP: kube-bench
|
|
jobs:
|
|
publish:
|
|
name: Publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check Out Repo
|
|
uses: actions/checkout@v3
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: Cache Docker layers
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: /tmp/.buildx-cache
|
|
key: ${{ runner.os }}-buildxarch-${{ github.sha }}
|
|
restore-keys: |
|
|
${{ runner.os }}-buildxarch-
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USER }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Login to ECR
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: public.ecr.aws
|
|
username: ${{ secrets.ECR_ACCESS_KEY_ID }}
|
|
password: ${{ secrets.ECR_SECRET_ACCESS_KEY }}
|
|
- name: Get version
|
|
id: get_version
|
|
uses: crazy-max/ghaction-docker-meta@v5
|
|
with:
|
|
images: ${{ env.REP }}
|
|
tag-semver: |
|
|
{{version}}
|
|
|
|
- name: Build and push - Docker/ECR
|
|
id: docker_build
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
push: true
|
|
build-args: |
|
|
KUBEBENCH_VERSION=${{ steps.get_version.outputs.version }}
|
|
tags: |
|
|
${{ env.DOCKERHUB_ALIAS }}/${{ env.REP }}:${{ steps.get_version.outputs.version }}
|
|
public.ecr.aws/${{ env.ALIAS }}/${{ env.REP }}:${{ steps.get_version.outputs.version }}
|
|
${{ env.DOCKERHUB_ALIAS }}/${{ env.REP }}:latest
|
|
public.ecr.aws/${{ env.ALIAS }}/${{ env.REP }}:latest
|
|
cache-from: type=local,src=/tmp/.buildx-cache/release
|
|
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache/release
|
|
|
|
- name: Build and push ubi image - Docker/ECR
|
|
id: docker_build_ubi
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
push: true
|
|
file: Dockerfile.ubi
|
|
build-args: |
|
|
KUBEBENCH_VERSION=${{ steps.get_version.outputs.version }}
|
|
tags: |
|
|
${{ env.DOCKERHUB_ALIAS }}/${{ env.REP }}:${{ steps.get_version.outputs.version }}-ubi
|
|
public.ecr.aws/${{ env.ALIAS }}/${{ env.REP }}:${{ steps.get_version.outputs.version }}-ubi
|
|
cache-from: type=local,src=/tmp/.buildx-cache/release
|
|
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache/release
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
|
|
|
- name: Build and push fips ubi image - Docker/ECR
|
|
id: docker_build_fips_ubi
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
push: true
|
|
file: Dockerfile.fips.ubi
|
|
build-args: |
|
|
KUBEBENCH_VERSION=${{ steps.get_version.outputs.version }}
|
|
tags: |
|
|
${{ env.DOCKERHUB_ALIAS }}/${{ env.REP }}:${{ steps.get_version.outputs.version }}-ubi-fips
|
|
public.ecr.aws/${{ env.ALIAS }}/${{ env.REP }}:${{ steps.get_version.outputs.version }}-ubi-fips
|
|
cache-from: type=local,src=/tmp/.buildx-cache/release
|
|
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache/release
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|