remove buildx and install docker #11
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
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
name: Build | ||
jobs: | ||
build-amd64: | ||
container: ubuntu:latest | ||
runs-on: org-${{ github.repository_owner_id }}-amd64-k8s | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Set the TAG value | ||
id: get-TAG | ||
run: | | ||
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV" | ||
- name: Install Docker | ||
run: apt update && apt install docker.io | ||
- name: Build container image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: false | ||
tags: husseingalal/hardened-containerd:${{ env.TAG }}-amd64 | ||
file: Dockerfile | ||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: husseingalal/hardened-containerd:${{ env.TAG }}-amd64 | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH' | ||
continue-on-error: true | ||
build-arm64: | ||
container: ubuntu:latest | ||
runs-on: org-${{ github.repository_owner_id }}-arm64-k8s | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
# - name: Set up QEMU | ||
# uses: docker/setup-qemu-action@v3 | ||
# - name: Set up Docker Buildx | ||
# uses: docker/setup-buildx-action@v3 | ||
- name: Set the TAG value | ||
id: get-TAG | ||
run: | | ||
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV" | ||
- name: Install Docker | ||
run: apt update && apt install docker.io | ||
- name: Build container image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: false | ||
tags: husseingalal/hardened-containerd:${{ env.TAG }}-arm64 | ||
file: Dockerfile | ||
outputs: type=docker | ||
platforms: linux/arm64 | ||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: husseingalal/hardened-containerd:${{ env.TAG }}-arm64 | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH' | ||
continue-on-error: true | ||
build-windows: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Set the TAG value | ||
id: get-TAG | ||
run: | | ||
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV" | ||
- name: Build container image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: false | ||
tags: husseingalal/hardened-containerd:${{ env.TAG }}-amd64-windows | ||
file: Dockerfile.windows | ||
outputs: type=docker | ||
platforms: linux/amd64 | ||
- name: Run Trivy vulnerability scanner | ||
uses: aquasecurity/[email protected] | ||
with: | ||
image-ref: husseingalal/hardened-containerd:${{ env.TAG }}-amd64-windows | ||
format: 'table' | ||
exit-code: '1' | ||
ignore-unfixed: true | ||
vuln-type: 'os,library' | ||
severity: 'CRITICAL,HIGH' | ||
continue-on-error: true | ||